This mod will simplify your life in Factorio's everyday life.
It does 2 things : update all stack size for each item found AND update armors, weapons and ammunitions stats.
For each element in data.raw, the mod multiply base values by a coefficient.
The coefficients are defined in a config file with the following default values:
StackUpdateMultiplier = {
ammo = {
magazine_size = 5,
stack_size = 10
},
armor = {
resistances = {
decrease = 2,
percent = 2
},
durability = 10,
equipment_grid = {
height = 2,
width = 2
}
},
capsule = {
stack_size = 10
},
gun = {
stack_size = 10,
attack_parameters = {
cooldown = 3
}
},
item = {
stack_size = 20
},
["mining-tool"] = {
durability = 5,
speed = 5,
stack_size = 10
},
module = {
stack_size = 10
}
}
Be careful if you modify the config file.
Do not put a decimal value or the game will crash when you will try to lauch Factorio.
All stacks have an integer value, so you need to obtain integer values at the end of the updating processus.
I did this mod because I can't play with 50 stacks of coals, woods, or 100 stacks of iron and copper plates anymore :) Warehouse storage is comming !
It's working with any mod which follows the right rules of mod creation.
I.E. creation of new item in data.raw.item, armor in data.raw.armor, ...
If a mod creates new elements in an another way, you will need to modify the mod by adding a file which does what it needs to do.
This mod is under the MIT License