Diconica , thanks so much, that's exactly the file I needed to edit random generated ages and starting happiness.
Glad to hear it.
I generally line out the 2 lines that select pre-generated characters. I mentioned above.
The random_list.rpy is a good place to make some edits.
You can convert the body type to a weighted list.
You can modify the weights on breast sizes.
Back in the random_generation_function.rpy
at line 120 you will find the skill and stats are generate. I made states first then made skills dependent on stats.
Another good file to look at is \game\major_game_classes\character_related\Person.rpy
You can find the section in it that deals with what likes and dislikes they have. Around line 60 it starts.
Also when it comes to likes and dislikes they have pre-generated personality types those files are all contained in
\game\personality_types they have individual files for each personality type.
Those get pulled from when they are building a random character even.
They have put a lot of traits in there that are inconclusive with a person working and being happy.
Such as stupid stuff like hating work, not liking certain days, not liking a particular type of work.
In the end it makes your odds of finding a person who can fill a job next to impossible.
\game\game_screens\business_screens\serum_production_ui.rpy
Line 50 you can find the controls to increase and decrease the amount of work put into a production line.
Standard is increments of 10. I personal changed mine to 5
Maybe you want to see what likes and dislikes an employee has
those can be found in the \game\game_screens\business_screens\interview_ui.pry
around line 70 there are 4 lines you need to change 72,80,88, and 97
If you want to see the girls hidden likes and dislikes the rest of the time
\game\game_screens\character_screens\girl_overview_ui.rpy
look at line 196 there are 4 lines there that need changing.
Anyway that should give you some more areas to play with. Have fun.