# body_shape
!!vhips = derived from salo in body_shape
!!vhtmp = slows the change to vhips in body_shape
!!wratio = waist to hips ratio set in body_shape
!!bratio = band to waist ratio set in body_shape
!!hratio = hip to height ratio set in body_shape
!!vofat = used as a place to put extra salo at extreme high values (i.e. really, really fat) set in body_shape
!!nbsize = starts at a set genetic bust size, but can be adjusted down if salo drops too low
!!magicf2b = set in body_shape for the fat moved to bust
!!genbsize = the set genetic bust size
!!salocatnow = the current category of salo
!!salocatlast = the previous category of salo
!!magf2bdo = flag for magic bust increase; 0, ready; 1, do it; 2, ask; 3, no
!!mgf2bnocnt = used to count the number of times a bust increase was turned down and stop asking after 3
!!magtarcup = set in the dream code as the target cup size
!!btwarn = used to flag if to display the gaining/losing weight message when bathing
!!salolast = used when doing a soft rest to control the cycling of the main code
!!sftrstflag = used to prevent a code chunk from firing on a soft reset
!!Image set variables
!! bodset = body image and descriptor control variable, used to indicate which image and descriptor set is in use
!! $bodimgsets[x] = body shape descriptors, tens place is the set (using bodset), 0 - 7 the descriptors (using salocatnow), 8 filler, 9 is the folder name
!! bdsetlock = flag to indicate set control override, 0 is use the formula to pick a set, 1 is use a fixed set
!! fixbodset = the identification number of the fixed image set
!! bodsetcnt = the number of sets present
!! imgset6ovr[x] and imgset7ovr[x] = a flag to indicate that an image set (x) has its own image 6 and/or 7
if $ARGS[0] = '':
!!Fall of muscularity over time
if pcs_stren >= 26 and pcs_vital >= 26 and sftrstflag = 0:
if downmusl >= 5:
downmusl = 0
pcs_stren -= 1
pcs_vital -= 1
pcs_agil -= 1
fat += 5
else
downmusl += rand (0,1)
end
end
!!This controls the gradual change in stat to -buf
if strenbuf > pcs_stren: strenbuf -= 1
if strenbuf < pcs_stren: strenbuf += 1
if vitalbuf > pcs_vital: vitalbuf -= 1
if vitalbuf < pcs_vital: vitalbuf += 1
if agilbuf > pcs_agil: agilbuf -= 1
if agilbuf < pcs_agil: agilbuf += 1
!!All the ratios were rounded to 2 digits and there are divide 100s at the final calc points
!!Waist to hip ratio
wrtemp = ((2 * vitalbuf + strenbuf + agilbuf) /4)
!! Primary wratio handling
if wrtemp < 11:
wratio = 85 + (11 - (vitalbuf + strenbuf + agilbuf)/3)
elseif wrtemp < 20:
wratio = 85
elseif wrtemp < 35:
wratio = 85 - (wrtemp - 20) / 3
elseif wrtemp < 55:
wratio = 80 - (wrtemp - 35) / 4
elseif wrtemp < 80:
wratio = 75 - (wrtemp - 55) / 5
elseif wrtemp >= 80:
wratio = 70
end
!! High stat value edge case handling
if (vitalbuf + strenbuf + agilbuf) /3 > 100: wratio -= ((vitalbuf + strenbuf)/2 - agilbuf)/5
!! This is the oops and high stat gone overboard handling
if wratio < 65: wratio = 65
killvar 'wrtemp'
!!Setting the vnesh bonus based on wratio
if wratio >= 85:
bodykoef = 0
elseif wratio >= 80:
bodykoef = 2
elseif wratio >= 75:
bodykoef = 4
elseif wratio >= 70:
bodykoef = 8
else
bodykoef = 4
end
!!For band to waist ratio
brtemp = (2 * strenbuf + vitalbuf + agilbuf) /4
if brtemp < 10:
bratio = 105
elseif brtemp =< 23:
bratio = 106
elseif brtemp =< 80:
bratio = 106 + (brtemp - 23) / 3
else
bratio = 125
end
killvar 'brtemp'
!!For hip to height ratio which is used to set the center point
hrtemp = (2 * agilbuf + vitalbuf + strenbuf) /4
if hrtemp < 35:
hratio = 60
elseif hrtemp < 45:
hratio = 59
elseif hrtemp < 60:
hratio = 58
elseif hrtemp < 80:
hratio = 57
else
hratio = 56
end
killvar 'hrtemp'
!!Salo Handling; the plus/minus 2 is to give working room normally, but exact on reset
if sftrstflag = 1:
if salo > fat: salo -= 1
if salo < fat: salo += 1
else
if salo > fat + 2: salo -= 1
if salo < fat - 2: salo += 1
end
!!This calculates the current salo category; ranges are 20 points, seemed to balance best if the range is x10 the hip devisor
:salocatloop
if salo < 10:
salocatnow = 0
else
salocatnow = 1 + (salo - 10) / 20
end
!!This controls the movement of salo to/from bust in order of precedence
if salobustdo = 0 and nbsize < genbsize and salocatnow > 2:
if sftrstflag = 0:'Your breasts seem fuller.'
nbsize += 1
salo -= 3
salobustdo = 1
jump 'salocatloop'
end
if salobustdo = 0 and magf2bdo = 1 and salocatnow > salocatlast and manna >= mannamax / 2:
if sftrstflag = 0:'Your breasts seem fuller.'
magicf2b += 1
salo -= 3
salobustdo = 1
if magicf2b >= 2 + magtarcup * 5: magf2bdo = 0
if magik < 20:
manna -= 2000 / magik
else
mana -= 100
end
jump 'salocatloop'
end
if salobustdo = 0 and salocatnow < 2 and salocatlast >= 2 and magicf2b > 0:
if sftrstflag = 0:'Your breasts seem to be getting smaller.'
magicf2b -= 1
salo += 3
salobustdo = 1
magf2bdo = 1
jump 'salocatloop'
end
if salobustdo = 0 and salocatnow < 1 and salocatlast >= 1 and nbsize > 0:
if sftrstflag = 0:'Your breasts seem to be getting smaller.'
nbsize -= 1
salo += 3
salobustdo = 1
jump 'salocatloop'
end
!!This sets which image set is to be used when the override is not set
if bdsetlock = 0:
if strenbuf >= 70:
bodset = 2
elseif strenbuf <= 40:
bodset = 0
else
bodset = 1
end
else
bodset = fixbodset
end
!!This is if a Succubus has salo < 1
if succubusflag = 1 and salo < 1:
sucexcess -= 1
salo += 3
end
!!This is if salo is still < 1
if salo < 1:
if fat >= 1:
salo = 1
if fat > 1: fat -= 1
elseif fat <= 0 and pcs_stren + pcs_vital > 0:
pcs_stren -= 1
pcs_vital -= 1
salo = 1
else
if Enable_nogameover = 0:
over = 3
gt 'gameover'
exit
else
pl 'You starved to death, but Cheat Mode keeps you Alive.'
salo = 1
end
end
end
killvar 'tempvct' & killvar 'salobustdo'
!!This is the hip calcs, 80 is the center of the current max-min range (10 - 130)
vhtmp = (salo - 80) / 2
if vhips > vhtmp: vhips -= 1
if vhips < vhtmp: vhips += 1
if (rost * hratio) / 100 + vhips > (rost * 72) / 100:
vofat = ((rost * hratio) / 100 + vhips - (rost * 72) / 100) / 2
vhips -= vofat * 2
end
!!This will trigger the warning notices in the bathing code (the +/- 12 should always be +/- 11 + the max change to salo w/ fat)
if salolast > salo and salo <= 12 + (20 * (salocatnow - 1)): btwarn = 1
if salolast < salo and salo >= (20 * (salocatnow + 1)) - 12: btwarn = 2
!!This will trigger the dream for the option to use magic to increase bust
!!Three nos at the dream will lock it out (1 yes resets the count)
if magik >= 5 and MagikDostup = 0 and magf2bdo = 0:
if salolast < salo and salo >= (20 * (salocatnow + 1)) - 11 and tits < 10:
if mgf2bnocnt < 3:
magf2bdo = 2
else
magf2bdo = 3 & killvar 'mgf2bnocnt'
end
end
end
!!This is to deal with the possibility that salocatnow changed by more than 1 (fat burners, vitamins, plastic surgery, etc.)
if salocatnow < salocatlast: salocatlast -= 1
if salocatnow > salocatlast: salocatlast += 1
!!This is for use in the warning code
if salolast > salo: salolast -= 1
if salolast < salo: salolast += 1
!!This accounts for higher Stats keeping the body shape stable and a bypass for resets (the plus/minus 5 is to give some working room)
if salo + 5 < fat and sftrstflag = 0:
if salo + 5 < fat - ((agilbuf + strenbuf + vitalbuf)/30):
fat -= (agilbuf + strenbuf + vitalbuf)/30
else
fat = salo + 5
end
elseif salo - 5 > fat and sftrstflag = 0:
if salo - 5 > fat + ((agilbuf + strenbuf + vitalbuf)/30):
fat += (agilbuf + strenbuf + vitalbuf)/30
else
fat = salo - 5
end
end
!!This modifies bodykoef for high or low salo values
if salocatnow = 0 or salocatnow >= 7:
bodykoef -= 8
elseif salocatnow = 1 or salocatnow = 6:
bodykoef -= 4
end
if vofat > 0: bodykoef -= vofat
!!This is to clean up unused variables
killvar 'normbuffpick' & killvar 'nrmbfpckct'
killvar 'vmeat' & killvar 'vfat' & killvar 'Kves' & killvar 'krost'
killvar 'koefvesbt' & killvar 'koefbt'
end
if $ARGS[0] = 'softreset':
!!This is for use in immediately updating shape if something has forced salo = fat by
!!cycling the main code the number of times it would have normally w/ a change in fat
sftrstflag = 1
:resetloop
if salo ! fat:
if gmstrtflag = 1: salobustdo = 1
gs 'body_shape'
jump 'resetloop'
end
!!Updates vneshbase after a reset
gs 'body_shape', 'basebeautycalc', 1
!!Clears the warning and reset status flags if they were set
sftrstflag = 0
btwarn = 0
end
if $ARGS[0] = 'hardreset':
!!This is primarily for canceling out "dounspell" and setting salo to whatever value will result in the current hip size then balancing everything out.
!!Also could be built in as a means to in-game undo "dounspell", other than the cheat.
if dounspell = 1 and dounsplkil > 0:
fat = 12 & salo = 12
agilbuf = pcs_agil & strenbuf = pcs_stren & vitalbuf = pcs_vital
salobustdo = 1 & sftrstflag = 1 & normbuffpick = -1
gs 'body_shape'
salo = (bedra * 2) - ((rost * hratio) / 50) + 80
fat = salo
if salo < 10:
salocatnow = 0
else
salocatnow = 1 + (salo - 10) / 20
end
salocatlast = salocatnow
salolast = salo
vhtmp = (salo - 80) / 2
vhips = vhtmp
if genbsize = 0 and nbsize > 0:
If nbsize >= 27:
genbsize = 27
else
genbsize = 2 + nbsize - nbsize mod 5
end
elseif genbsize = 0 and nbsize = 0 and silicone >= 20:
genbsize = 12 & nbsize = 12 & silicone -= 10
end
sftrstflag = 0 & normbuffpick = 0 & btwarn = 0 & magf2bdo = 0
killvar 'dounsplkil'
newbdsp = 1
dounspell = 0
gs 'body_shape', 'basebeautycalc', 1
gs 'body_shape'
gs 'stat'
else
'If you''re seeing this, something odd happened.'
end
end
if $ARGS[0] = 'initial':
if fat ! salo: fat = salo
if fat <= 0: fat = 80
if genbsize = 0:
genbsize = 12 & nbsize = 12
else
nbsize = genbsize
end
agilbuf = pcs_agil & strenbuf = pcs_stren & vitalbuf = pcs_vital
normbuffpick = -1 & gmstrtflag = 1
salo = 0
gs 'body_shape', 'softreset'
salocatlast = salocatnow
normbuffpick = 0 & magf2bdo = 0
killvar 'gmstrtflag'
newbdsp = 1
gs 'stat'
end
!!This is the calculation for the base appearance
if $args[0] = 'basebeautycalc':
!! Setting vidagebonus
vidagebonus = 100
if vidage < 20: vidagebonus = 100 - 2 * (20 - vidage)
if vidage > 30: vidagebonus = 100 - 2 * (vidage - 30)
!! Setting Eyelashes bonus
if resnic = 1:
resnicbonus = 2
elseif resnic = 2:
resnicbonus = 5
else
resnicbonus = 0
end
!! Setting Eye Size bonus
if glaraz = 1:
glarazbonus = 1
elseif glaraz = 2:
glarazbonus = 3
elseif glaraz = 3:
glarazbonus = 2
else
glarazbonus = 0
end
!! Setting the Lip size bonus
if lip = 0:
lipbonus = -2
elseif lip = 1:
lipbonus = 0
elseif lip = 2:
lipbonus = 3
elseif lip = 3:
lipbonus = 5
else
lipbonus = 3
end
!! Preforming the calculation
vneshtemp = vidagebonus * ((skinvan * 2 / 5) + (3 * (2 + bodykoef)) + (pcs_agil / 10) + (pcs_vital / 10) + resnicbonus + glarazbonus + lipbonus - (5 * zub)) / 100
!! skinvan = skin condition, corrected to a 0 to 40 range; bodykoef set in main body_shape; zub is missing teeth or cosmetically improved teeth (-1)
!! This is the first limiter
if vneshtemp > 100: vneshtemp = 100
!! This adds the supernatural vnesh bonus; currently Bimbo and Succubus
vneshtemp += supnatvnesh
!! This is the rate of change limiter
if vneshbase > vneshtemp: vneshbase -= 1
if vneshbase < vneshtemp: vneshbase += 1
!! This is for use when a reset is called for by setting args[1] = 1
if args[1] = 1: vneshbase = vneshtemp
!! This is to clean up variables only used here
killvar 'vidagebonus'
killvar 'resnicbonus'
killvar 'glarazbonus'
killvar 'lipbonus'
killvar 'vneshtemp'
!! This is to unload old variables
killvar 'CloNaturalBeauty'
killvar 'CloBaseBeauty'
killvar 'skin'
killvar 'bimbobeauty'
end
--- body_shape ---------------------------------