#archived-update-spoilers
1 messages · Page 171 of 1
So yea
Y'all want the folder with the lists once I'm done
Actually, Caldera Lava Eel is weird
Because Lava Eel is always exactly second on the list
So it's always checked
So effectively it swaps the priority of Physics 101 and Lava Eel
if you've already gotten physics 101 what happens then?
trash i assume
edit: misread the question
You get it again
You can catch it infinite times
It has high priority 5% catch chance
So it rolls 5%, and it's always at the front of the list of possible catches
But uh... in Caldera, Lava Eel is always second on that list
huh, so I have just had odd luck to only get it the one time, interesting
which part of the code is this? because I don't see a fishing-related code that specifically mentions caldera
And Targeted Bait means that first three items on the list get checked
Yeah I've only ever gotten one as well
not using targeted bait though
So a thing I discovered last night that might be useful for folks to know: if you complete the magic ink quest on a green rain day, the cutscene won't fire. It will fire the next day, though. I feel like it's not a bug because the wizard says something to the effect of "I'm very busy today and can't be disturbed" if you talk to him, so it feels intentional.
It's a natural result of the location data. The only catches are Physics 101 with negative priority, Lava Eel at 0, and Trash at 2000. So the list is always in exactly that order.
lava eel is at -10?
-20 but i get your point
Point is, only three possible catches, and the priority makes their positions in the list deterministic
Anyway, point is, this explains why the numbers were off for regions with large fish pools
Because the targeted bait tries significantly helps in places with large fish pools
where is this precedence code?
orderby p.Precedence, Game1.random.Next()
select p;```
which level do you need to be for fishing to catch the new one? <3
Dunno what that'll actually be called in your decomp lol
i wonder if im going to get any good stuff
Feels like my SC runs are more determined by statue blessings now than daily luck...
Hope you got the treasure book
But basically, it loads the fish into a list, then sorts it by precedence, then randomly within each precedence bracket
ok found it
treasure totem is kinda broken for farming snake vertebrae and qi beans
depends in part on what you consider good stuff right now
i got like 25
meh
at least its money
i only need the flute for the museum
actually the star too turns out i just didnt notice
two wanted items isn't too bad, plus the ancient doll in case you didn't already use that for the easter egg
Some of those are worth decent money too
I still don't understand how (1.) it rolls thrice (2.) the probabilities are dependent
That's the targetedBaitTries thing
should i trade the books for spicy eel
Technically, it sorta rolls 6 times
Hello what is 1.64 changelog.
Imagine shuffling a deck of cards, drawing the top 3, checking if any of them are an Ace, and if not, then reshuffling the deck and drawing the top 3 again
That's basically what's going on
why 6? shouldn't it be 4
3 tries from the targeted bait thing
for (int i = 0; i < 2; i++)
this is 2 times
if (baitTargetFish == null || !(fish.QualifiedItemId != baitTargetFish) || targetedBaitTries >= 2)
this is 2 times
Then roll the entire lot twice
Actually wait
Fuck this is cursed
The targetedBaitTries doesn't reset between rolls
No you were right actually
it's 3+1 right
Just noticed that the targetedBaitTries bit is >=, not >
the fish order isn't rerolled on the second iteration
So it is 2 times right
Yeah, this is weird
Doesn’t it check 0 and 1
so if the first fish isn't the targeted fish, it's not going to be the targeted the second time round
Okay, on closer inspection, I think my original "you basically roll twice" was actually right but for the wrong reasons?
can you explain what this is? ItemQueryResolver.TryResolveRandomItem(spawn, itemQueryContext, avoidRepeat: false, null, (string query) => query.Replace("BOBBER_X"...etc
the code trail runs too deep for me
You nerds digging into the code again? /j

Lmao
It iterates over the shuffled list twice
It handles location data that's a single entry with multiple possible items
E.g. trash, or the wood/stone from fountain fishing
oh no effect then
I want those 2 animal crackers
But yeah, basically, it iterates over the shuffled list twice, and returns the first success. If using targeted bait, it can instead return the second success, if the second success is the targeted fish.
As far as I can tell
I would've kept those tools at home for more slots except the ole' Pickaxe and Sword
my shard luck wasnt genuinely insane this run but
i did get better with the explosive ammo
so i consider today a win!
what are the chances of getting the fairy box?
I don't fully comprehend the drop rate of a monster kill, because it drops in that instance, right?
no you shuffle the deck of cards once, take note of the first card, take note of the second card, then look at the first card again for some reason
if one of the cards is an ace, you take it, but if not, you take the first card
First card won't be same on second passover, because of the RNG in passing chance/spawn rate checks
you can get trinkets from anywhere in the mines and sc by killing monsters
and breaking crates and treasure room floors!
YOO GOOD SHIT DUDE
okay, what does Reaching do for the pan?
on the second passover this block won't even be executed and firstNonTargetFish is already populated the first time
{
return fish;
}
if (firstNonTargetFish == null)
{
firstNonTargetFish = fish;
}
targetedBaitTries++;```
It pans further! 
I had the same question actually, I think it lets you pan faster because you don't have to move as far?
like... charge it to reach those spots that sometimes spawn out of reach? Is the only thing I can think of.
it lets you reach the super annoying panning spots
So say you have list of [Physics 101 (5%), Lava Eel (50%), Trash (100%)] (chance to pass checks estimated)
Possible sequences should go:
Physics 101 Pass, Lava Eel Pass: Get Lava Eel
Physics 101 Pass, Lava Eel Fail, Trash Pass: Get Physics 101
Physics 101 Fail, Lava Eel Pass: Get Lava Eel
Physics 101 Fail, Lava Eel Fail, Trash Pass, Physics 101 Pass: Get Trash
Physics 101 Fail, Lava Eel Fail, Trash Pass, Physics 101 Fail, Lava Eel Pass: Get Lava Eel
Physics 101 Fail, Lava Eel Fail, Trash Pass, Physics 101 Fail, Lava Eel Fail, Trash Pass: Get Trash
i should probably have used a different trinket but honestly im in love with this ice rod jwjw
ok I actually understand this now, I think!
I desperately need an ice rod
YOURE GOING TO LOVE IT AAAGAHSHDNDH
It iterates over the list either until you've passed twice (in which case it returns the first item), or the targeted fish has passed (in which case it returns the targeted fish)
i especially love how it fucks you over but only sometimes
Lmfao
I think that's why I ended up chesting it at first
I was trying to kill a dragon in the Volcano and the rod kept freezing it
So it was invincible 🤣
Slingshot time
Actually wait no
I LOVE WHEN THIS HAPPENS
I think this is probably bugged lol
"well, okay, i guess im NOT killing that thing"
the other trinkets are probably fun too!
I haven't tried frog egg or basilisk paw tho
I have both and only the frog was fun
Lil fella, hopping around
being all silly
Then BAM! he just ate a pepper rex(?)
i kinda wanna try him out but idk if reforges work on him aside from aesthetic and idk if i wanna sacrifice drops...
That's why I put it in a chest
Parrot egg is cute
guys help, I've been checking each tree on ginger island every single day for a whole 2 seasons and haven't gotten a single golden coconut
I think I broke my game cause the day before that streak started I got 3 and then died in the volcano
I don't wanna sacrifice drops
You've been chopping them?
Okay, so if 3 items that aren't the targeted fish pass the random checks, it also returns the 3rd item
it doesn't return except for targeted fish so the list is iterated continuously even if some fish has passed
ahhh fair enough haha
No just shaking
IT ISSS I LOVE HOE IT SITS ON YOUR HEAD IDLY
Chop for the wood anyway, sometimes the coconut doesn't fall until the last chop for me
I don't think it can even return more than 1 thing unless GetFishFromLocationData is also iterated?
So there's actually 3 possible end conditions:
- Complete Two Iterations of the list with 2 or less items passing: Return the first item that passed
- 3 items pass at any point: Return the third item
- Targeted fish passes at any point: Return the targeted fish
do people in here regularly chop down the coconut trees on ginger island? I never have
rarely. maybe at first, if I need wood for chests and didn't bring any
I always do just for the wood since I run low and I'm not bothered to go to cindersap
Also golden coconuts
the claim that coconuts drop from chopping is new to me, shaking was always enough
I shake 'em for coconuts, and I regularly chop down the ones in the desert
i always do that ESPECIALLY the mahogany trees
I do clear the mahogany trees regularly but they don't drop anything but wood and seeds, so it's ok
Dropped on the last chop a couple times for me so, better safe than sorry
@astral vine Are you ever considering switching to the more efficient shed layout using iridium scythe
god i didn't even consider that would be a thing that's so funny
Nice. If only that applies to Kegs. inb4 mod is created where Iridium Scythe can scythe machines as well.
Thank sicarious for it lmao
I use automate mod so I can fill the entire building with sheds and it doesnt matter lol
I just chopped all of the trees, no golden coconut just 58 regular coconuts and now I gotta wait for them to regrow for another chance 3:
Skill issue.
DAAAAMN
I only need to kill 11 more pepper rex but the SC refuses to give me any!!
that't me 1 month before
This! I could try~ Thanks for this. I currently only have 128 garden pots on each shed.
Rip
of course it was sicarious that guys so cool 😭😭
But wait... i plant my SFs and SF is a single harvest crop. How am I going to place the seeds?
i thought you planted single harvests in GI
lmao
I mean i plant other single harvest crops on GI
that's why I don't chop down the gi coconut trees, so I can in fact check them whenever I'm there instead of waiting for regrow
i plant my SFs in shed
in my main farm
I remember when I thought 100k/week was a lot and now I'm making 100k/day
what crops/processing you using
my greenhouse has a mixture of AF and starfruit, I have two barns of pigs, I have mostly AF and strawberries on GI
I'm not anywhere near optimal capacity
if the targeted fish is not the first or second item that passes the block will not be executed?
to be honest I tend to focus on qi quests and special orders
wait... this is my farm set up #farms-and-outfits message
sheds near the mushroom cave:
4 sheds - regrow plants
2 sheds - empty
8 sheds (yellow) - Starfruit
8 sheds (pink/red) - Fairy Roses
Other sheds are just storage for things.
It will be, the targetedBaitAttempts >= 2 means it's executed even if it's not the target fish
No Keg Sheds? I fear the architecture of the surrounding areas including the Quarry and the Train Station.
My GH is filled with AFs
yes if the first and second time it's not the target fish all the chances will have run out by the third?
Imagine the following sequence of checks for Caldera:
Physics 101 Pass, Lava Eel Fail, Trash Pass, Physics 101 Fail, Lava Eel Pass
Under this circumstance, it returns Lava Eel
How does one turn a shed into a greenhouse? the lil pots Granny gives us the recipe of?
init targetedBaitTries = 0
Physics 101 Pass => targetedBaitTries = 1
Trash Pass => targetedBaitTries = 2
Lava Eel Pass => doesn't even check if lava eel is targeted
That and the Deluxe Retaining Soil.
Jeez
Correct
But it returns the 3rd thing
huh, how?
{
return fish;
}```
If targetedBaitTries==2, it returns the fish that just passed the check
Whatever it is
(Well, item rather than fish, but still)
no if it fails it return the firstNonTargetFish
{
return firstNonTargetFish;
}```
the check can pass for way more than 3 times
if absolutely everything fails you get sunfish
Those are all or gates
The thing that you're looking at is what happens if there are 2 or less fish that pass
Over the full 2 iterations
quick question
It never gets to that code if 3 fish pass their checks
can anyone tell me what the last two on the right are?
the inner loop has nothing to return except for targeted fish?
mystic syrup and raisins
we need to make a new bot command that just shows what the new shippables are lmao
seems like every 2 days someone asks this
or, someone needs to update the wiki
I only asked because it wasn't on the wiki
._.
It returns "thing that was just hooked", if either "there is no target fish", "the thing is the target fish", or "we've already hooked 2 other things"
I'm not sure we're looking at the same piece of code because I don't see another return in that loop
It doesn't skip return fish; if targetedBaitTries>=2, it executes it regardless of other conditions
Yeah, I would but I've no clue how to update the template
oh I get it now
{
return fish;
}```
Condition 1 = there is no target fish
Condition 2 = this is the target fish
Condition 3 = this is the third thing to pass the checks
If any of those conditions are met, it returns fish
I think I got confused because of the second condition
read it like
if (baitTargetFish == !null && !(fish.QualifiedItemId != baitTargetFish) && !targetedBaitTries >= 2)
thanks for putting up with my dumb ass lmao
ok now to calculate the probability of this
I eagerly await the results for catfish, sturgeon, legend(II), lava eel, and possibly super cucumber
I want to find out too, currently watching a video now on probabilities of probabilities
Yeah not happening, this is cursed to calculate. Doable for caldera lava eels just because the list of outcomes is so short, but still...
there's a bayesian thing to do that but I'm way out of practice give me a sec
I hope it used a rubber
I'm an idiot
lol
the torturous work that is rearranging your museum collection
glad I did that before donating all the items
It doesn't lock their positions after completion anymore
Oh fr??
Yeah you can just reorganize them at will after completion, it was added... 1.4? Late 1.3?
Hasn’t for a while
You just go and interact with the desk and it allows you to reorganize museum
Damn
It doesn’t add anything new?
They clarify they messed up right after
would be so much easier to organize the collection if you could do it like a clash of clans base
they'd all stay in a little sidebar inventory you can pick and drop
It did actually mess up my game a tad
Got dwarvish translation guide with only 3 scrolls donated
But
Thankfully not a lot
Now that I built the mountain obelisk I don't go to the backwoods anymore cuz I can skip it

I walk or ride through the backwoods for that tasty forage, even though I don't need it. I have a weakness for leeks and hazelnuts, what can I say
Keep forgetting they're a loved gift, I get a good few I just sell
175,000g, 450 wood and 100 hardwood to upgrade house
Then 390,000g for renovations...
its a bit expensive but I'm gonna use my gold like water till I go broke.
oh shit they took away our ability to make polls
did ppl start spamming or what
They’re just annoying and take up a lot of screen space
They’re still in some channels
We did a few polls didn't think it was that much
discord always manages to implement things as badly as possible
could've made them retracted until you clicked on em
check the announcement in the #bulletin-board channel, it was never intended to be unrestricted
makes sense, nice
you don't have to do the renovations or even the second house upgrade for perfection, (I think you need it for the missing bundle only), put it off if you like
damn bro looking good
Maybe they just want them because House 🅱️ig
oh I wanted them too and got them, but perfection came first, then I could save money and spend it on random stuff like that
it's all in the playstyle that suits a person though
what are the best ring combinations i am think of combining iridium and napalm?
idk if it is worth it though
Napalm is risky on the farm due to Truffle crabs
Well, Luck rings are popular
I'm gonna try Generous with the pan instead of Reaching, I think. We'll see how this goes
idk what is better vampire or pheonix
I always cross Iridium and Slime Charmer, and Luck and Burglar. But I might switch to Luck and Aquamarine (+crit chance%, coz I'm a crit build)
Slime Charmer makes like half the enemies in the game harmless. Slimes are so much more plentiful than others
kill 1k slimes and get it from the adventurer's guild
i should be close to that
Idk about half
There’s so much more enemy variety now
Esp in SC
thought I would test how far the iridium scythe reaches.
Its 2 tiles to the left/down/right, 3 tiles upwards
You can make the top most rows 3 thick but the cornermost tile cant be reached
I have idirium + burglar, iridium + slime charmer, and (to swap in when needed) iridium + lucky, other peopel go for napalm or vampire, all depends
is ginger ale or triple shot better for skull cavern?
Triple shot imo
i'm using rock candy if that changes anything
you can spicy eel it up for the extra bit of luck
ale if you're just staircasing for treasure rooms. coffee if you're doing anything else.
Then triple shot even more
that's what I do anyway
yeah you're good for luck already, you oughta get some speed on
nuh uh, I'm gonna mrc + qi seasoned ginger ale and you can't stop me
so i can just plant whatever i want in garden pots at my home, use deluxe retaining soil and boom wine for life?

No ancient fruit
But yes
starfruit?
okay so between vampire, pheonix and crabshell rings which is the best?
even better, you can do hops!
100%
oh yes no need to replant then
Do you have farming mastery yet
Pretty much
the trellis doesn't matter if it's already in a garden pot.
yeah all max
Iridium scythe buffs garden pots by a lot
With regrowables you can even use the scythe to plant more
Since you can double/triple layer hops or pineapples
2 to the sides and 3 thick up and down
I have coffee plants growing in the little cubby next to my front door
.
okay so I tripling pineapples i think, thanks for the help!
3 thick up, 2 thick down. Or 5 thick if accessible from both top and bottom
Those are all bad but for survivability crabshell
okay ty
Defense in general is kinda sad when enemies in later content hit for upwards of like 50 dmg
Any tips for finding the prismatic butterfly?
I guess the swing distance is a bit different for harvesting than it was changed for combat
Or just calculated differently
Find it and then restart the day
Or something
It can spawn anywhere in the valley but farm iirc
It can only spawn in certain areas, search those then reset the day when you find it and go there straight away
Probably scythe harvest code is still using actual animation somehow yeah
Nah there are like 7 or smt locations it can
Thank you!
Shame
…the valley has 7 locations
Doesn't really affect shed strats that much. You can still do this
mountain, backwoods, cindersap, secret woods, town, beach
- farm but i already said that was excluded
Missing railroad and bus stop
What's the best crop other then sf and af?
Ah bus stop
Hops if you're masochistic enough to deal with the extreme labour requirements
Which is also a valid spawn
(This is a bad idea)
Lemme find my list of monocrop candidates
A brief rundown of the top 10 crops in terms of pure profitability under ideal conditions (i.e. greenhouse or island, pre-established field for regrowth crops, field already covered in speedgro otherwise, as many off-farm processing machines as you need, etc.):
- Hops (Pale Ale) - 420g/d
- Starfruit (Wine) - 393g/d with HSG and Profession Swapping. Drops to 343g/d with no profession swapping
- Ancient Fruit (Wine) - 330g/d
- Sweet Gem Berry (Raw) - 212g/d with HSG, Agriculturalist, and eating +4 farming food before harvesting, and purchased seeds. Drops to 144g/d if using seedmaker to acquire seeds.
- Pineapple (Wine) - 180g/d
- Blueberries (Wine or Jelly) - 159g/d
- Cranberries (Wine) - 133g/d
- Pumpkin (Juice) - 130g/d with HSG + Profession Swapping. Drops to 112g/d with no profession swapping (Not accounting for giant crops, which are a major boost but difficult to calculate)
- Strawberries (Wine) - 129g/d
- Rhubarb (Wine) - 118g/d with HSG + Profession Swapping. Drops to 103g/d with no profession swapping
Thanks
I didn't know hops was better then sf and af
250 sell price over 12 days for 80g seed cost vs 220 over 13 for 100g
It’s a hell of a lot more effort though
Yeah
I left it off the list because it was yet another summer crop IIRC
Tad odd but sure
And I wanted to have the strawberry/rhubarb comparison
it is but requires daily work, which is why it's not very popular
“Better”
if you are just wanting some variety, pineapple is not a bad third thing to toss into the mix, though it's a lot less profit.
Pineapple is noteworthy for being the best (non-Hops) shed-compatible crop
At least now with the scythe
Do you guys agree that these are the best enchantments for each tool?
Pickaxe - Swift
Axe - Shaving
Hoe - Generous
Watering Can - Bottomless
Pan - Generous
Mhm
Like, nobody was going to manually water their starfruit
Does buying all golden nuts make it so you cant get 100% perfection?
Wasn’t drs sf better tho
no 😄 but some of that is a matter of taste. I prefer reaching for hoe/watering can, the rest are fine
you can still get perfection. even if you buy waivers too.
what in the game actually makes it so yopu cant get perfection?
or can you perfection no matter what?
you can always get it unless you encounter some serious game breaking bug.
okay
now depending on what you do, it might take longer than it could, but that doesn't matter so much imo
My reasoning for watering can and hoe is you only ever need to till and water tiles once, and then just keep them tilled + fertilized with fiber seeds or multi seasonal crops, and keep them watered with sprinklers
True actually, DRS Starfruit is 250g/d with profession swapping, 211.5g/d without. But now pineapple is iridium scythe compatible
yeah I often let my main farm crop areas go untiled, so I need the reaching.
Depends on your playstyle I guess :p
I was originally going to go powerful on the pick but it's much weaker than I thought which is a shame
Oh and wait I forgot Master for the fishing rod
Anyway, accounting for the space compression of sheds, you can fit 167 pineapple plants in a ~28 tile area (assuming 1-wide access path in front of the big shed), which takes it from 180g/d/t to 1074g/d/t
yeah master on the rod goes without saying, and I've had the same experience with powerful on the pickaxe not being really noticeable
Also they were also just way faster to plant and harvest
Like 30 minutes vs 1:20
A big shed full of potted hops can theoretically make 2505g/d/t lol
lol is right
70140g per day per shed that you can be bothered to actually harvest and process
You’re accounting for walking between them
On the wiki it says it adds two levels to the axe, and only one for the pickaxe (which only lets it break iridium in 3 hits instead of 4 and minor stuff like that)
I think it should be buffed to give 2 on both
funny how I don't want to spend a large chunk of every day kegging things. thanks but no thanks
Building clipping is still barely in the game and you could still teir the buildings though it looks a bit hideous
by the time you are worrying about that, you're using bombs for most iridium nodes anyways. so it's really only useful in the volcano dungeon, and then not all that useful...
True lol
- I only need to kill 4 more pepper rex, but can I find them? 😠
Wait sicarious how many crops are in the new shed layout?
check the predictor and see what it says about possible floors? oh but maybe you'll find some isolated ones.... good luck!!
Pepper Rexes mostly spawn on prehistoric floors but can also spawn on regular floors rarely
I think if you go like 100 floors each trip you should be able to kill 4 in 2-3 trips to the cavern
Does that even make pineapple better than sf with profession swapping
And like Apergos said if you don't wanna leave it up to chance and just know ahead of time you can use the predictor
at least you can see if there might be one in the first 100 levels, if not, save your bombs and stuff for another day
... actually no lol
Ooh it barely edges out non agri sf
It's close though
Pineapple Shed is 30.0k per day, Profession Swapping Starfruit Shed is 34.2k per day, Artisan Starfruit Shed is 28.9k per day
Per Shed
tf is profession swapping
You use Agriculturalist 99% of the time and horde wine
And then once every few years, you spend 20k to temporarily change to Artisan and back just long enough to sell your stacks of wine
an extremely end game move as you can imagine
Switching professions at the sewer with the statue of uncertainty depending on what you're gonna do at the following days
For example stacking all your artisan stuff and using agriculturalist- okay nevermind he explained it better
Wait 29.9 or 28.9
Oops
maximus tryhardus, i like it
Funny thing about profession swapping is that to do it as efficiently as possible, you don't even ship the wine
You sell it all to Pierre
which parrot do i trade nuts to?
Because that lets you use statue same day
Then you buy it back again after you switch proffesions back right?
Rather than needing to wait for the day after you sold to use the statue again
where he gets the millions to buy all that, who knows. never did trust that guy
At cheaper
How do i catch prismatic butterfly? I found it above the water in the mountain and it disappeared
Or do you not do that
No that bug got patched
Ohh
Now it’s always double the base sell price buyback
?
Yes, I know. But I ahe spent the past week getting to level 80 every day and I'm still 4 short
I'd say ginger house first
sorry? I don't quite understand the question
So you can sleep on the island
I don;t like using mods. 🙂
not a mod, a third party website that analyses your save file!
acually im stupis where do i find farm obelisk?
it's not a mod. it's a standalone site, assuming you are on pc and have access to your save file, it can just show you the possibilities
It's actually a save file checker on the web but I understand if you wanna play completely vanilla
left of the house, you need to unlock both the house and the mailbox first
Maximum tryhard is hops sheds. Literally 70k per day for a Hops shed if you process it all into Pale Ale.
Downside, you need to harvest the shed with fairly precise iridium scything every day, and also unload and reload 167 kegs per shed per day
ah. well you need to unlock farmhouse, then mailbox, then the obelisk would be available to unlock
How do i catch prismatic butterfly? I found it above the water in the mountain and it disappeared
but I would advise unlocking all the areas of the island first before buildings and such
(all the areas includes: path to farm, dig site, resort because that opens up the east part of the island)
jesus christ, i'll keep my conventional farming so i don't have to do that everyday lol
Lol I actually did resort as one of the last ones and I think that was a mistake
Unlock the walnut room
Actually holy shit that's hilarious I just realised. Hops shed where you literally just ignore the daily regrowth and do it every second day instead is still better than profession swapping + starfruit lol
You can only buy the gems after you purchased every single parrot upgrade
thank goodness
imagine if someone could actually lock themselve sout of perfection by trading in their walnuts early
ty
The cow above the bed is certainly a choice
udderly ridiculous, you meant to say 😛
"thou art committing a sinful act, yoba will be notified of this"
How do you get shaym?
"i, personally, am very displeased"
Also OWW, lucky pants hurt ;-;
You can see why Lewis wanted you to find the one he already had, rather than go downstairs and face that thing to get another pair
ice rod.
Why do you think his shorts are so angry?
something to do with marnie mayhaps?
Becasue I did the basement, I finally did the shorts at the autumn fair. First time I've ever done that 😄
I bet the cursed shorts are like a guard dog, Lewis can go get the pair any time but anyone else try to mess around, they get what's coming to them!
I almost died getting them too
you can't fight back and there's no defense
do you even think he washes them
again: ice rod.
maybe it was an oversight and it will be patched out, but it freezes them right in place!
I didn't have any trinkets at that point
ah, that would be an issue
or actually, I didn't know the pants would fight back. I only knew there was a basement secret
When I go I am definitely bringing a warp totem out of there
I came prepared to die. Instead, I waltzed out with a brand spanking new (I hope they are not used!) pair of shorts, taking my own sweet time
can a weapon have both an innate enchantment AND a combat enchantment at the same time?
my luck never fails me
ok so what am i missing, i tried the axe picaxe nothing
me and my coops cant buy a new pet (we have a bowl and the first pet at 5 hearts)
Go from higher
Nothing is back there
not here
ahhh
Wait, there is something?
Behind the pink tree (;
i was trying to hard lol
Are you playing 1.6
O.o
You just have to go up higher, it’s hidden
Almost opposite of the secret statue entrance area
yeah i was trying to hard gorilla LOLL i found it
ok so how did you manage to get two of those??
big slime (that has a galaxy soul in it)+ burglar ring and a bit of luck 
Either luck from 2 drops or they killed a slime with it in it with burglar
It’s guaranteed to drop 2
man the big slimes I run into never have those, so sad
Extremely common burglar's ring W
there are no burglar's ring Ls after all
science has yet to create such a thing
How do you get burglar ring?
Decently so, if you’re looking out for them they’re pretty easy to spot and it’s the best way to get the galaxy souls
Monster slayer reward for 500 dust sprite
well now i'm only 2 souls short to get all 3 infinity weapons, very cool
Nice
I spent oh 7-8 sc runs just looking for and slagging big slimes. not one galaxy soul. not ONE
and yes only good luck days in case that made a difference
i have no idea about my daily luck, i just came here to kill ghosts for ectoplasm
i did get the ectoplasm too lol
and yes, dangerous sc
I was talking to apergos as you can only get them in the dangerous state
They may have been running the regular version
oh? I wasn't aware, I thought as long as it was the big slimes they might have them
Nah has to be dangerous sc
nah, qi room stuff only spawns in dangerous variants
^
isn't it after 50 monsters killed in dangerous mines or dangerous sc, there's a chance to drop?
Nope
and if you gonna SC, might as well go dangerous because radioactive ore
They only spawn when the danger sc is active
ah well I didn't know
I might as well just do the dangerous mines a bunch then, I've got those set to dangerous state
Just want to clarify, this is true but it also needs to be when the danger mode is active
Does iridium nodes spawn in the dangerous sc still?
yep
just look at the amount of enemies for me to slaughter, this truly makes dangerous sc superior
Yeah
"ooOOOOOOH"
crusader enchant goes brrrrr
I might try with crab shell next time
It’s harder mid game
...ok, I just saw a rabbit run through a wall and the adventure guild house...
well if you're doing Qi quests i wonder how you don't have an enchanted iridium pickaxe yet
or a galaxy sword
if you're going down there with the goal to kill many things fast, crusader is wonderful, 100% recommend
Bombs
I don’t have bombs
Also it’s pretty hard to deal with the sc if you don’t have ladders
I hit infested floors 3 times
i never use ladders either
unless infested floor and i'm really close to the end or something and have no time
depends on the floor but infested floors can be a time sink if you're trying to get deep as fast as possible
Well yeah, I didn’t have ladders on me
depends on the floor layout too, some i'd definitely keep a ladder around for
but most i just clear, it's fun
spirals. yeah
I might use my 100 iridium bars on crystalriums for jades
yeah.
just run around with swift iri pick and get ladders fast, very easy to use 
Battery packs might be an issue
I died on floor 99 due to serpent dropping a bomb and me instantly using it
woopsie
unfortunate end
tbh for SC if you really worry about health you can get fairy trinket if you have one
who trusts a farmer with serious explosives anyways. sometimes this game...
it heals soooo much
I’ll probably push floor 200 on the next star luck day
I unlocked qi before combat mastery
what
Do you guys not lol
no
did CA just nerfed the recipe for the basic speed grow?
i got mastery 5 before unlocking ginger island
you can get to the walnut room pretty fast but it's hard to speed up combat 9->10 unless you're really spending a lot of time on monster slayer goals
instead of clams and pine tar, you need moss and pine tar to craft speed-gro in 1.6
what did you do for red cabbage?
Traveling cart
remixed community center: 
ah lucky
y'all should try remixed, very cool
Wdym lucky lol
I mean I got red cabbage year 2 a week after growing it
I had guarantee y1 completion
ooohh!
Do you check traveling cart?
yes religiously but... it just wasn't there until too late. but also I did not use that setting
Religiously?
every friday and sunday. without fail.
informal
If you do something religiously, you do it regularly:
He visits his mother religiously every week.
(source: https://dictionary.cambridge.org/dictionary/english/religiously ))
I got lucky and when I didn’t have any money for it, the next week they came back
now that IS luck
y'all want
?
That setting guarantees a red cabbages in the traveling cart
The first time around she was selling the seed packet
Nooo save your copper for tappers 😭
Still sorta luck, the setting guarantees a red cabbage or red cabbage seed, but it can be as late as Winter 14
Just kill serpents for the seed
Oh btw sic, did you figure out what targeted bait really does
Yes and I hate it because it makes calculations a pain in the arse
Can you please describe
More
Take the shuffled list of fish. Iterate though it on loop (without reshuffling) until one of the following happens:
- The targeted fish passes its RNG check, then hook that fish
- 3 items pass their RNG checks, then hook the third item
- You go through the entire list twice without either of the above happening, then hook the first item that passed its RNG checks
Guaranteed to be at least two items that pass by end of second loop, since trash exists everywhere and you'll hit it once at the end of each loop
It also makes the targeted fish much more likely to pass one of its two RNG checks
So the wiki x1.66 is wrong?
That's the 1.66
Oh does it simplify
those are just bombs i've gathered from killing monsters lmao
One of the RNG checks is needing to roll under Spawn Chance + 2% x Fishing Level
Oh nice so fishing level matters
Targeted Bait multiplies that whole value by 1.66
I see
In addition to the weirdness mentioned earlier
So if this is above 0.6 it’s guaranteed targeted fish?
No
Cause 0.6*1.66 is 1
Competing with every other fish's bite rate
Man this is too much math for me to remember lmfao
As I said, that's only one of 2 RNG checks, and there's a chance for 3 other items to pass first in most areas
Ah okay
Targeted Bait can guarantee passing the spawn rate check
But it can't guarantee a good shuffle on the fish list, and it can't guarantee locational chance
ready for anotha skull cavern run 😤
Iridium cheese? Fancy
Inefficient ✅
Fancy ✅
Cheese ✅
cheese but better
Cheese but Cheese
cheese but cheesier
btw does golden spur get the perfect prefix? i have a 10 second one which i think is the max but no prefix
Yeah 10 seconds is the max, and also no prefix on it… theres prefixes for the other ones?
No, that's just an ice rod and magic quiver thing
Fun fact, you can theoretically get an Ice Rod with perfect stats but not "Perfect" name
😔
i have a perfect ice rod too
1/2000 chance for each stat to be perfect, and then 95% chance to not roll "Perfect" name
Oh wow
Works out to roughly 1-in-4.2-million
1.5 content
1.2 iirc
Oh farther back
Woooops, I started in 1.5, but never saw this, so was a bit unsure :3 Ill put it in seasoned :33333
Its also because you didnt put a Wicked Statue in your hut. The Statue stops the witch from painting all your slimes
A lot better? Fires ~60% more often, and freezes almost as long
Thank you! I had one of those just for decor bc i didnt know what it was for 🥹 ill put it inside instead 🥹
I will say I don't remember black slimes having glowing eyes
It just says on the wiki max is 5/3
Where?
Trinkets section
isnt max 4/3
Oh yeah may have misremembered
Wasn't it that the max is "freezes longer than its own recast timer"
It's 3-5 seconds shot cooldown, and 2-4 seconds freeze duration
Can cooldown ever be less than duration
Yes
a perfect ice rod id 3 seconds shot cooldown with 4 seconds freeze duration
Literally just said that
Ohh ok
so yes
you can permastun any enemy in the gsme like this
i would know it has screwed me over more than id like to admit (funny tho ill give it that)
Thought it was the other way around
idk guys i think i learned a few things about foraging (i need mastery)
nothing helps more in the caverns than like a three mummy pileup
my fishing collection shows another fish after the sea jelly, but it's not shown on the collection page on the wiki, where is it from?
AAAAHHH
guys i think they know a few things about foraging
But yeah, actual process for it is that it rolls a random millisecond value between 3000 and 5000 for cooldown, then another between 2000 and 4000 for duration, and then has a 5%, chance to just set them both to perfect and rename itself regardless of those results
check the wiki page for goby
[[Goby]]
Goby, in waterfalls
oh thank you, it seems easy enough to catch
There's bound to be a few dino eggs in there
Just thought, you know what would be a good additional source of forage XP?
Watching Living on the Land
pretty shit luck
genius idea tbh
That's really good!
probably picking berries now that that gives foraging exp
also, is getting married a requirement to achieve perfection? i don't like the idea of a spouse
but uh. hardwood stumps are where its at
I was suggesting an additional possible source
Really! Now that I know that imma watch it every Monday
You can invite Krobus to room with you instead
you might be interested in krobus
i mean i do want to stay alone
It's not, I was suggesting something that might make for an interesting change
Buy waivers
If you live by yourself, you miss out on a stardrop
there's always divorce!!
I hate that stardrop being locked behind a roommate/spouse tbh
You could get the Stardrop then boot the spouse/roommate out
i'd feel so bad kicking the spouse out
Man just wants to be single
I just pick my spouse based on home decor preferences
And treat them as furniture
And also dove factory
Winter outfits threw a bit of a spanner into that though
Because my usual pick for best home decor is Penny, and her winter outfit sucks
...a "flower vase," as the Chinese idiom goes
Haley got the best winter outfit, but her room is C tier at best unless you're doing a full on beach theme
What is your favorite farm since 1.6 dropped? And why?
Enter a marriage of convenience with a co-op player who joins exactly long enough to have the wedding and then never shows up ever again after the Stardrop shows up
Mine is Riverland because you start out with a ||fish smoker||
Bonus points for that is you can also get a maxed out cabjn while they're around lol
Just do the same thing with a spouse
Ignore your wife
That’s what I do
I wonder what spouse adds the most usable tiles to your house actually
Leah or krobus probably
At least from my recollection, those two are rather empty
So I got farming as my first mastery, what do y'all recommend I get next?
Krobus is either 4 or 6 occupied tiles depending on whether some rubble is actually blocking or not
Leah is 7 occupied tiles
Renovated cabin: the forbidden Super Shed
Looks like Penny is most suboptimal spouse for space maximisation
Whatever content u do the most probably
Have the Marriage-of-Convenience farmer move into a trailer cabin (how does a trailer have a cellar??????), divorce you, and marry Penny to move her into the trailer 
I wonder what spouse offers the most annoying to obtain items as spouse gifts
Leah's gifts were pretty good in 1.5 since chantarelles and morels were annoying to get out of season before, but that's resolved now
ive seen a few of those floors and got no dino eggs lol my first one was from fishing one up
Best feature of the magic quiver is that it narcs on crabs
I really hated Alex’s and Elliott’s. Only 2 I couldn’t get to dance y1
personally i like how it knocks back nearby enemies basically giving you a knockback forcefield
That too. It's amazing for the squids.
The stuff they give you, not other way around
You're able to knock the squids back out of their aggro radius lmao
the way i see it its like. the opposite of the ice rod
it's more defensive than the ice rod too which is such a cool unintended side effect of knockback
that sounds hilarious actually
Just had an idea... The WearMoreRings mod has a config for a bonus trinket slot. I should combine the two.
oh goodness 😭 that sounds funny
i hope it works
Ohh I got a list but idk if anything changed 1.6
speaking of trinkets
I don't believe so
i hope ca adds more
they're pretty cool as of right now but id love to see more
and if not, maybe a mod? they're super cool after all
But 1.6 changed the relative availability of items, which changes the relative rarity of different spouse gifts
Warp farm totems
⁉️
alex is still a bitch to give gifts to
people say elliott is bad but he's like bearable compared to alex
we're looking at loved gifts specifically
Elliot is at 2 hearts fall y2 😭
Mm okay
Crab cakes aren’t hard to get
that's way later in the game though
Duck feathers I give him
Just buy a couple hundred after the crab event
i can get a duck feather super easily in comparison
My pomegranates are growing. I could have Elliott again if I wanted, but I wasn’t all that impressed with him last time I married him
I hate that this is even a thing
the crab cake event?
yeah it's an odd one
Wish it was repeatable or something
not to raise it?
So you can postpone the event until you can afford to buy as many crab cakes as you want
@tough remnant I gave up with the binomial thing
came up with this in js instead. it returns with the combination of all the chances of fish multiplied (e.g for a, b, c, d, you get a, b, c, d, ab, ac, ad, ... bcd, abcd) in an array. after that you can easily find fish chances just by addition and adding coefficients, which i'm going to do tomorrow
don't bother reading it
function recursiveMultiply(chanceArray) {
let resultArray = [[chanceArray[0]]];
for (i = 0; i < chanceArray.length - 1; i++) {
let currentLength = resultArray.length;
for (j = 0; j < currentLength; j++) {
let tempArray = [];
for (k = 0; k < resultArray[j].length + 1; k++) {
if (resultArray[currentLength - j - 1][k]) {
newValue = resultArray[currentLength - j - 1][k] * chanceArray[i + 1];
tempArray.push(newValue);
}
}
if (resultArray.length <= currentLength - j) {
resultArray[currentLength - j] = [];
}
resultArray[currentLength - j] =
resultArray[currentLength - j].concat(tempArray);
}
resultArray[0] = [];
let tempArray2 = [];
for (k = 0; k < resultArray.length; k++) {
tempArray2.push(chanceArray[k]);
}
resultArray[0] = tempArray2;
}
return [[1]].concat(resultArray);
}
console.log(recursiveMultiply(chanceArray));```
4 days after willy’s heart event
Crab cakes are cheaper than espressos for that 1 spd and last the whole day
(As a comparison of how cost efficient it is to buy them from gus)
Food and drink buffs can stack
I am aware
Then why not both
I was comparing the cost ratio of paying money for 1 speed
My point is, its a very good deal
Oh
Ppl will pay 750/900g for 1 speed for part of a day
This is 550g for 1 spd for a whole day
can a weapon have both an innate enchantment AND a combat enchantment at the same time?
Yes
Mhm
Indeed
They’re forged differently
You can stack forge, combat, innate onto a non-galaxy/infinity weapon
But if its a dragoontooth weapon u need to enchant it before forging it for whatever reason
huh
It’s because enchant increases its level & it won’t be eligible for forge past a certain level
You need to do the dragontooth ones first then prismatic shard ones
The whatever reason was more about why it has such an arbitrary restriction and less about how it worked
1.6.4 released yet?
Not yet
Skill issue.
It's not HUGE I've got 550k but jesus christ
When today?
just now
Just 5 min ago
Passing out as in dying or timing out
the alternate mine levels is something ive been asking for for a long time
What used to be the crafting for speed grow? It's now moss but you could craft it pre-1.6 too?
Dying
Why would u ever do this
and napalm rings being safe is nice
aesthetic
Its 10% of your cash up to 15k
iirc it was clams
Damn
Holy shit
Auto petters can now come in golden boxes
Time to find out
i dont know if anyone else cares as much as i do but,, i love this
That’s insane
yea this is a great one
Which big crops should I keep and make an area around? :3 Gna use winter on making the farm look nice :3
Wait this is huge damn
like bubbles but for a specific fish
Now i can avoid SC even more
Added two inappropriate names to the list to exclude from the name generator.
Ugh I wonder what caused this
It was generating a slur by accident
swears in other languages
Thank god
Damn
I’m so glad I’ve been stockpiling mine
Yooo more mini shopping bins
have you guys received the update on steam?
just crab pot, cheese, or salad
I have
gamer ty
gamer
can someone tell me what books I am missing ?
wiki should list them all by now?
Bait and bobber is one of them
"mapping cave systems" from the adventure guild and ol' slitherings
now how do I get the cutscene for raccoon? I already have them full chilren
u get it even if uve maxed them already
how
walk into cindersnap forest
if its to tell me to check me the wiki 
I did... its summer maybe thats why?
how do I get this one ?
sorry
summer shouldnt matter, are you sure you have all of them?
It's a generic book that just gives fishing XP, it doesn't show up in the wallet
Bookseller has it
yea, I have good neighbors
okay
So cute!!!
Oh wait you don’t have ol’ slitherings
i may have forgot about this one ngl
That’s also in the bookseller
hmm weird it worked for me when I went in there
ill sleep and try again, I just openened the game without clicking an update button :p
yeah the two books he's missing that are power related are ol' slitherings which is from the bookseller and mapping cave systems from adventurer's guild back room
but they have the golden box trade so idk
oooh gotchz ! thanks !
oh yea u have to update lul
There are other books but they are just stuff like "gives you xp in a certain skill" or "teaches you all the queen of sauce recipes that you don't know"
oh hmm
wait has anyone else seen the new cutscene yet?
slept and it did not work
thats ... not good
anyone know what fish frenzies and 20 mine layouts are in 1.6.4
i don't get what it is
bubbles but last longer and they increase chance of specific fish
even closed and opened the game back up
ty
every floor looks different right? thats a mine layout
no its a low chance of getting a new type of floor every time u enter one
oh. so nothing that special
are there new enemies
cool
i wish the dev would just pay the modder to work on the game so he can release 1.7
its something ive been wanting for a long time, nice to see that its in
he has people helping him
This is a surprising amount of stuff for a minor patch
yea he cant stop adding stuff lul
yea he's made millions off the game and can make millions more if modders work on it 24/7
is this a clam? ive already picked up so many of them but idk what this actually is...
theres a fish cutscene on the beach with willy presumably introducing frenzies!!!
crab pot clam
he only has to hire like 1-2 people and the game could get so miuch bigger
need to get from crab pot
wait nvm its bug meat cutscene
you underestimate
:p
i see
yea there no new cutscene for frenzies
That is interesting...
i read about a stardew valley expanded mod (haven't played it) all done by 1 guy
was very strong
sve is NOT one person lmao
yes it's a clam, you gotta pick it up from a crab pot for it to count as a caught fish
You need to get it from a crabpot
ty guys
how many people is it? @tranquil igloo
donno, but ive talked with a few people who contributed so i know its more than just 1
more like other sources were too weak
Oh
||– Golden mystery boxes now have a small chance to yield an auto petter.||
noice
that's the best update

in 100h i only got 1 auto petter
ohmygosh
– Napalm rings are now non-destructive on the farm and inside the slime hutch (i.e. the explosion will only damage monsters).
FINALLY
what's a napalm ring
Omg yes
The one that blows everything up around you when you slay a monster
It's good for the mines but terrible if you forget to take it off on the farm
oh it's an actual ring lol
Let's fuckin goo new update yeah babyyy
anyone know if targetted sturgeon bait makes the lake better money than the ocean in summer
how do I get the raccoon cutscene help its updated I think its just that im in summer
I never liked them
One of my opinions don't know if it is accepted as I never liked the elixir of life or the energy tonic
Wait I read it wrong it only restores health and the energy tonics restore only energy
I'm in fall year 4 and still haven't found a single auto petter
So nvm
it's getting very annoying
well now u have an alternative
I never liked the auto petter
and you can trade up regular lootboxes to golden
Why? It saves time
you can also trade up goldens to rock candy
auto petter works weaker anyways
And keeps your animals happy
I liked manually doing it
just means theres one less chore to do in the morning



