Is there good amount of girls with small breasts? In any case, game looks interesting, thanks for the work.
Also wondering if you allow modding of your game, or are interested in content submissions (not videos, more writing/events, for example I'm into sister-incest, might make a mod for it if you permit that to be published.)
spectre1viper small bug in NPC/npcloc, "gorgeous figure" does not work due to:
Code:
if fat[num]>250 or mus[num]<500:
if (bedra[i]/10)<=90:$face_k[i]+=', beautiful figure'
if (bedra[i]/10)>90:$face_k[i]+=', beautiful figure with big booty'
else
if (bedra[i]/10)<=90:$face_k[i]+=', gorgeous figure'
if (bedra[i]/10)>90:$face_k[i]+=', gorgeous figure with perfect ass'
Replace 'num' with 'i' in fat and mus, and it will work. (fat[num] and mus[num] are always 0 on said screen, hence conditional is broken). Have you considered setting up a gitgud to allow people to contribute code?
An unrelated question, how does princessgen work? I'm trying to make it so that they have smaller breasts since I prefer that, but lowering the tits[num] = rand(x,y) is not working. I also see their stats like muscle, fat, etc are being 'randomized' apart from the static values in princessgen, but I can't figure out where it happens. Will keep looking myself as I explore the way this game is coded.
EDIT: Guessing it has to do with Body/body stat assignment, I see now, trying to understand how exactly all this stat generation works. Starting see how it works now, is there a specific reason you're basing all stats on combinations of rost, rib, build, fem, etc. instead of just using rand() for the specific body parts?
EDIT2: Okay I really don't understand where stats are being randomized, would love to know. Because setting rost[num]=750 in creation_family, and then checking what sister rost is in game with
$face_k[i]+=', (rost: <<rost[i]>>)'
in npcloc (in cheat mode, where it shows beauty), I get wildly different, and randomized value.