-
Notifications
You must be signed in to change notification settings - Fork 40
Starting the game
fungamer2-2 edited this page Dec 10, 2022
·
3 revisions
When you start the game, the player is assigned a random name and gender, and random initial stats. They will also be assigned parents with random names.
Happiness: 50-100
Health: 75-100
Smarts: 0-100 (implemented as the sum of two random numbers between 0 and 50, which makes it follow a triangular distribution)
Looks: 0-100 (implemented as randint(0, 65) + randint(0, 35)
which makes it a bit more variable than Smarts)
Gender: 51.2% of characters are male, while 49.8% are female (because in real life, the is the ratio of genders is 51.2:49.8 rather than exactly 50-50)