Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits)

okay I realized the current stat system is too limiting, I’ll try to greatly improve it next update sorry! I see you’re trying to add to the milk stat, but right now you can only return the value.

To get this setup to work, you are almost there, but the milk value need to take into account the previous milkVolume. For example

// Calculate current milk volume
let milkVolume =  stats.find(s => s.name === 'Milk Volume')?.value || 0;
milkVolume += (productionRate - expressionRate);
(2 edits)

"Don't worry, making scripts is hard, even I can't write JavaScript. GPT is my hero.

Even with GPT I don’t know HOW its work, if it will work or not.

Four milk stats: Lactation, Breastmilk Volume (Milk Storage), Leakage, and Milk Accumulation, just for experimentation.

Maybe later, I’ll incorporate Milk Storage with Breast Size—bigger breasts have more storage—and also incorporate it with Lactation.