Crops Anytime Anywhere is a Stardew Valley mod that lets you grow crops in any season and location, including on grass/dirt tiles you normally couldn't till. You can optionally configure the seasons, locations, and tillable tile types.
- Install the latest version of SMAPI.
- Install this mod from Nexus mods.
- Run the game using SMAPI.
Note that the mod doesn't change store inventories, so you can only buy crop seeds during their usual seasons.
If you install Generic Mod Config Menu, you can click the cog button (⚙) on the title screen or the "mod options" button at the bottom of the in-game menu to configure the mod. Hover the cursor over a field for details.
The in-game UI only lets you set options for all locations. If you want different settings per
location, you can edit the config.json
file in the mod's folder using a text editor like Notepad.
The file is created the first time you run the game with the mod installed.
You can change these settings per-location:
setting | default | what it affects |
---|---|---|
GrowCrops |
true | Whether crops can grow here. |
GrowCropsOutOfSeason |
true | Whether out-of-season crops grow here too. This only applies if GrowCrops is true. |
UseFruitTreesSeasonalSprites |
false | Whether fruit trees match the calendar season when drawn, even if they produce fruit per GrowCropsOutOfSeason . |
ForceTillable |
dirt, grass | The tile types to make tillable beyond those that would normally be. The available types are dirt , grass , stone , and other . |
The location keys can be one of *
(all locations), Indoors
, Outdoors
, or an internal location
name. (You can use Debug Mode to see location
names.)
By default all locations can grow any crop, but you can change that. For example, this enables in-season crops anywhere and out-of-season crops in the secret woods:
{
"InLocations": {
"*": {
"GrowCrops": true,
"GrowCropsOutOfSeason": false
},
"Woods": {
"GrowCrops": true,
"GrowCropsOutOfSeason": true
},
}
}
If multiple configs apply to a location, the last one specified applies. This is always additive, so you can't disable crops in a location that normally does allow them.
Compatible with Stardew Valley 1.6+ on Linux/macOS/Windows, both single-player and multiplayer. In multiplayer mode, it must be installed by the main player to work correctly.