A role-playing adventure sandbox in an open, procedurally generated world, with a first-person view, taking the best from Minecraft and Terraria... Read more
Overstacked
-
Download (16.64 kB)January 19, 2026, 01:36 PMperepolnennye-stopki-predmetov_1768819002_241099.zip
The Overstacked mod increases the max stack size of several commonly used items to be higher. It also offers a powerful config system that allows you to modify the max stack size of any item in the game!
Default Changes
- Ores 25 -> 50
- Wood Trunks/Planks 100 -> 250
- Fibre 100 -> 250
- Rocks 100 -> 250
- Soils 100 -> 250
- Petals 100 -> 300
- Rubble 100 -> 150
- Crystal Shards 100 -> 150
- Seeds 100 -> 150
Configuration
When you run the game for the first time after installed the mod, a Darkhax_Overstacked folder will be generated in the mods folder. Inside this folder you will find a MaxStackSizes.json file, which is both an example and the default changes made by the mod. The file can be edited with notepad or any other text editor.
ItemIds
The ItemIds section of the config is a direct map of the item Ids to new stack sizes. You can increase or decrease the stack size, as long as the size is not less than 1.
{
"ItemIds": {
"Rock_Stone": 999,
"Soil_Dirt": 5
}
}If you don't want the mod to modify an item, just remove it from the map. All entries are optional and up to you.
Regex Patterns
The Patterns section allows you to define a regex pattern. Any Id matching the regex will be updated to the new size. For example the pattern ^Furniture_.*_Stool$ will match any item that starts with Furniture_ and ends with _Stool. Regex patterns are very powerful because they allow you to make sweeping changes. They can also be dangerous as there is a potential for them to match on something you did not account for.
{
"ItemIds": {
"Rock_Stone": 999
},
"Patterns": {
"^Furniture_.*_Stool$": 200
}
}
Useful links: