body.qsrc 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. # body
  2. !! I have gone through and added a new category of string variables, standardised to be used for descriptive writing. You will notice some duplication here -- this is for purposes of backwards compatibility, as if I completely rename and discard some of these strings,
  3. !! extant saved games will irrepairably break, and this would be Bad. One day down the line, most of the duplicated variables here can be culled, when there is a new release that warrants new saves being used, but until then the duplication needs to stay. Use of
  4. !! strings for descriptions that do not begin with $pcdesc_ should be avoided, as it would be best to have everything standardised when moving forward into the present and future.
  5. !! Available strings follow this format: $pcdesc_type, $pcdesc_typewordy, and $pcdesc_typerandom. The last will give a new string each time, to allow for repeatedly referencing something accurately without it becoming repetitive. Not EVERYTHING has a wordy
  6. !! or even random variation, but these should work regardless -- they just may use a non-wordy, or non-random version, if it is something that does not really warrant such.
  7. !! There is also a special string, $pcdesc_typeinsertive, that follows the format " , descriptive text" as in, " , invitingly-glossed". Please check the master string document to see if this exists for the string you need. - xerya, July 2017
  8. if pcs_throat = 0:
  9. thpic = 0
  10. $pcs_throat = 'You have a chaste <a href="exec:view''images/pc/body/throat/th0.jpg''">mouth</a>.'
  11. rand_throat = rand(0)
  12. if rand_throat = 0:$pcdesc_throatrandom = 'virgin'
  13. $pcdesc_throat = 'virgin'
  14. $pcdesc_throatwordy = 'virginal, unused'
  15. $throattipe = 'virgin'
  16. elseif pcs_throat <= 5:
  17. thpic = 1
  18. $pcs_throat = 'You have an extremely inexperienced <a href="exec:view''images/pc/body/throat/th1.jpg''">mouth</a>.'
  19. rand_throat = rand(0)
  20. if rand_throat = 0:$pcdesc_throatrandom = 'narrow'
  21. $pcdesc_throat = 'narrow'
  22. $pcdesc_throatwordy = 'reluctant, gag-prone'
  23. $throattipe = 'narrow'
  24. elseif pcs_throat <= 10:
  25. thpic = 2
  26. $pcs_throat = 'Your slightly-experienced mouth leads to a sensitive <a href="exec:view''images/pc/body/throat/th2.jpg''">throat</a> with an easily-triggered gag reflex.'
  27. rand_throat = rand(0)
  28. if rand_throat = 0:$pcdesc_throatrandom = 'delicate'
  29. $pcdesc_throat = 'delicate'
  30. $pcdesc_throatwordy = 'delicate, barely-experienced'
  31. $throattipe = 'delicate'
  32. elseif pcs_throat <= 15:
  33. thpic = 3
  34. $pcs_throat = 'You have an experienced mouth and fairly practiced <a href="exec:view''images/pc/body/throat/th3.jpg''">throat</a>.'
  35. rand_throat = rand(0)
  36. if rand_throat = 0:$pcdesc_throatrandom = 'fairly practiced'
  37. $pcdesc_throat = 'fairly practiced'
  38. $pcdesc_throatwordy = 'fairly practiced'
  39. $throattipe = 'fairly practiced'
  40. elseif pcs_throat <= 25:
  41. thpic = 4
  42. $pcs_throat = 'You have a willing mouth and trained <a href="exec:view''images/pc/body/throat/th4.jpg''">throat</a>.'
  43. rand_throat = rand(0)
  44. if rand_throat = 0:$pcdesc_throatrandom = 'well-trained'
  45. $pcdesc_throat = 'well-trained'
  46. $pcdesc_throatwordy = 'experienced, well-trained and eager'
  47. $throattipe = 'well-trained'
  48. elseif pcs_throat <= 35:
  49. thpic = 5
  50. $pcs_throat = 'Your deep tunnel of a <a href="exec:view''images/pc/body/throat/th5.jpg''">throat</a> may adopt any member.'
  51. rand_throat = rand(0)
  52. if rand_throat = 0:$pcdesc_throatrandom = 'capacious'
  53. $pcdesc_throat = 'capacious'
  54. $pcdesc_throatwordy = 'seasoned, effortlessly-plumbed'
  55. $throattipe = 'capacious'
  56. else
  57. thpic = 6
  58. $pcs_throat = 'Your gag reflex is completely absent and your <a href="exec:view''images/pc/body/throat/th6.jpg''">throat</a> has seen nearly as much cock as it has food.'
  59. rand_throat = rand(0)
  60. if rand_throat = 0:$pcdesc_throatrandom = 'bottomless'
  61. $pcdesc_throat = 'bottomless'
  62. $pcdesc_throatwordy = 'elastic, oft-fucked'
  63. $throattipe = 'bottomless'
  64. end
  65. if pcs_breath = 1:$pcs_throat += ' Last you checked, your breath smelled fresh and minty.'
  66. if pcs_vag = 0:
  67. puspic = 0
  68. $pcs_vag = 'Your virgin <a href="exec:view''images/pc/body/pussy/vag0.jpg''">pussy</a> still has its hymen intact.'
  69. rand_pussy = rand(0)
  70. if rand_pussy = 0:$pcdesc_pussyrandom = 'virgin'
  71. $pcdesc_pussy = 'virgin'
  72. $pcdesc_pussywordy = 'virgin'
  73. $vaginatipe = 'virgin'
  74. elseif pcs_vag <= 5:
  75. puspic = 1
  76. $pcs_vag = 'You have an inexperienced <a href="exec:view''images/pc/body/pussy/vag1.jpg''">pussy</a>.'
  77. rand_pussy = rand(0,2)
  78. if rand_pussy = 0:$pcdesc_pussyrandom = 'narrow'
  79. if rand_pussy = 1:$pcdesc_pussyrandom = 'vice-like'
  80. if rand_pussy = 2:$pcdesc_pussyrandom = 'inexperienced'
  81. $pcdesc_pussy = 'narrow'
  82. $pcdesc_pussywordy = 'squeezingly tight and narrow'
  83. $vaginatipe = 'narrow'
  84. elseif pcs_vag <= 10:
  85. puspic = 2
  86. $pcs_vag = 'You have a tight <a href="exec:view''images/pc/body/pussy/vag1.jpg''">pussy</a>.'
  87. rand_pussy = rand(0,1)
  88. if rand_pussy = 0:$pcdesc_pussyrandom = 'snug'
  89. if rand_pussy = 1:$pcdesc_pussyrandom = 'tight'
  90. $pcdesc_pussy = 'tight'
  91. $pcdesc_pussywordy = 'youthfully tight'
  92. $vaginatipe = 'tight'
  93. elseif pcs_vag <= 15:
  94. puspic = 3
  95. $pcs_vag = 'Your <a href="exec:view''images/pc/body/pussy/vag1.jpg''">vagina</a> is used to taking normal sized insertions.'
  96. rand_pussy = rand(0,2)
  97. if rand_pussy = 0:$pcdesc_pussyrandom = 'elastic'
  98. if rand_pussy = 1:$pcdesc_pussyrandom = 'practiced'
  99. if rand_pussy = 2:$pcdesc_pussyrandom = 'snug, if easily pliable'
  100. $pcdesc_pussy = 'pliable'
  101. $pcdesc_pussywordy = 'seasoned, pliable and tight'
  102. $vaginatipe = 'pliable'
  103. elseif pcs_vag <= 25:
  104. puspic = 4
  105. $pcs_vag = 'You have a well-developed <a href="exec:view''images/pc/body/pussy/vag1.jpg''">vagina</a>.'
  106. rand_pussy = rand(0,3)
  107. if rand_pussy = 0:$pcdesc_pussyrandom = 'welcoming'
  108. if rand_pussy = 1:$pcdesc_pussyrandom = 'invitingly ready'
  109. if rand_pussy = 2:$pcdesc_pussyrandom = 'amply-practiced'
  110. if rand_pussy = 3:$pcdesc_pussyrandom = 'plenty experienced'
  111. $pcdesc_pussy = 'experienced'
  112. $pcdesc_pussywordy = 'experienced, welcoming'
  113. $vaginatipe = 'experienced'
  114. elseif pcs_vag <= 35:
  115. puspic = 5
  116. $pcs_vag = 'Your regularly-fucked <a href="exec:view''images/pc/body/pussy/vag2.jpg''">playground</a> can take most things you force up there.'
  117. rand_pussy = rand(0,3)
  118. if rand_pussy = 0:$pcdesc_pussyrandom = 'eager and hungry'
  119. if rand_pussy = 1:$pcdesc_pussyrandom = 'routinely-fucked'
  120. if rand_pussy = 2:$pcdesc_pussyrandom = 'cock-starved'
  121. if rand_pussy = 3:$pcdesc_pussyrandom = 'seemingly constantly-fucked'
  122. $pcdesc_pussy = 'oft-fucked'
  123. $pcdesc_pussywordy = 'well-trained, oft-fucked'
  124. $vaginatipe = 'oft-fucked'
  125. else
  126. puspic = 6
  127. $pcs_vag = 'Your poor little <a href="exec:view''images/pc/body/pussy/vag2.jpg''">pussy</a> is so used to being over-stuffed that it takes a huge member just to get off.'
  128. rand_pussy = rand(0,2)
  129. if rand_pussy = 0:$pcdesc_pussyrandom = 'always-ready'
  130. if rand_pussy = 1:$pcdesc_pussyrandom = 'near daily-stuffed'
  131. if rand_pussy = 2:$pcdesc_pussyrandom = 'overeager, ever-popular'
  132. $pcdesc_pussy = 'overeager'
  133. $pcdesc_pussywordy = 'cock-tamed and ever-ready'
  134. $vaginatipe = 'overeager'
  135. end
  136. !! The original variables are all named for ass, but really, this is just all about the asshole.
  137. if analplugIN = 0:
  138. if pcs_ass = 0:
  139. anpic = 0
  140. $pcs_ass = 'You have a virgin <a href="exec:view''images/pc/body/anus/0.jpg''">anus</a>.'
  141. rand_anus = rand(0)
  142. if rand_anus = 0:$pcdesc_anusrandom = 'virgin'
  143. $pcdesc_anus = 'virgin'
  144. $pcdesc_anuswordy = 'virgin'
  145. $anustipe = 'virgin'
  146. elseif pcs_ass <= 5:
  147. anpic = 1
  148. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/1.jpg''">anus</a> is barely used, and looking at it none would know it was used for sex.'
  149. rand_anus = rand(0,2)
  150. if rand_anus = 0:$pcdesc_anusrandom = 'tight'
  151. if rand_anus = 1:$pcdesc_anusrandom = 'snug'
  152. if rand_anus = 2:$pcdesc_anusrandom = 'tightly-clenching'
  153. $pcdesc_anus = 'tight'
  154. $pcdesc_anuswordy = 'tight, scarcely-used'
  155. $anustipe = 'tight'
  156. elseif pcs_ass <= 10:
  157. anpic = 2
  158. $pcs_ass = 'Your pliable <a href="exec:view''images/pc/body/anus/2.jpg''">anus</a> has the shape of an asterisk.'
  159. rand_anus = rand(0,2)
  160. if rand_anus = 0:$pcdesc_anusrandom = 'flexible'
  161. if rand_anus = 1:$pcdesc_anusrandom = 'slightly experienced'
  162. if rand_anus = 2:$pcdesc_anusrandom = 'pliable'
  163. $pcdesc_anus = 'flexible'
  164. $pcdesc_anuswordy = 'flexible, still-snug'
  165. $anustipe = 'flexible'
  166. elseif pcs_ass <= 15:
  167. anpic = 3
  168. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/3.jpg''">anus</a> is usually slightly parted, it has been used quite often.'
  169. rand_anus = rand(0,2)
  170. if rand_anus = 0:$pcdesc_anusrandom = 'stretchy'
  171. if rand_anus = 1:$pcdesc_anusrandom = 'experienced'
  172. if rand_anus = 2:$pcdesc_anusrandom = 'welcomingly ready'
  173. $pcdesc_anus = 'stretchy'
  174. $pcdesc_anuswordy = 'stretchy, regularly-fucked'
  175. $anustipe = 'stretchy'
  176. elseif pcs_ass <= 25:
  177. anpic = 4
  178. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/4.jpg''">anus</a> often looks like a wide hole; anyone would think that the only thing you do is anal sex.'
  179. rand_anus = rand(0,2)
  180. if rand_anus = 0:$pcdesc_anusrandom = 'loose'
  181. if rand_anus = 1:$pcdesc_anusrandom = 'casually open'
  182. if rand_anus = 2:$pcdesc_anusrandom = 'routinely-fucked'
  183. $pcdesc_anus = 'loose'
  184. $pcdesc_anuswordy = 'loose, open'
  185. $anustipe = 'loose'
  186. elseif pcs_ass <= 35:
  187. anpic = 5
  188. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/5.jpg''">anus</a> genuinely doesn''t fully close on its own anymore. You could put a fist through it and it would scarcely stretch at all.'
  189. rand_anus = rand(0,2)
  190. if rand_anus = 0:$pcdesc_anusrandom = 'gaping'
  191. if rand_anus = 1:$pcdesc_anusrandom = 'yawning'
  192. if rand_anus = 2:$pcdesc_anusrandom = 'obscenely yawning'
  193. $pcdesc_anus = 'gaping'
  194. $pcdesc_anuswordy = 'gaping, seemingly constantly-fucked'
  195. $anustipe = 'gaping'
  196. else
  197. anpic = 6
  198. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/6.jpg''">anus</a> is almost completely wrecked. Even with conscious effort it''s hard to close it.'
  199. rand_anus = rand(0,4)
  200. if rand_anus = 0:$pcdesc_anusrandom = 'destroyed'
  201. if rand_anus = 1:$pcdesc_anusrandom = 'demolished'
  202. if rand_anus = 2:$pcdesc_anusrandom = 'uselessly loose'
  203. if rand_anus = 3:$pcdesc_anusrandom = 'ruined'
  204. if rand_anus = 4:$pcdesc_anusrandom = 'wrecked'
  205. $pcdesc_anus = 'destroyed'
  206. $pcdesc_anuswordy = 'absolutely fuck-wrecked'
  207. $anustipe = 'destroyed'
  208. end
  209. !! This below was originally missing even the original reference for $anustipe, so I added it in simplistically. Also, tanga means panties, or more specifically, a thong. A lot of duplication on descriptions, but not much to change, the logic is for images.
  210. elseif analplugIN = 1 and $pantyworntype ! 'none':
  211. $pcs_ass = 'Your <a href="exec:view''images/pc/body/analplug.jpg''">anus</a> is currently filled with your butt plug.'
  212. rand_anus = rand(0)
  213. if rand_anus = 0:$pcdesc_anusrandom = 'plugged'
  214. $pcdesc_anus = 'plugged'
  215. $pcdesc_anuswordy = 'plug-stuffed'
  216. $anustipe = 'plugged'
  217. elseif analplugIN = 1 and $pantyworntype = 'none':
  218. if pirsG = 1 and pirsGL = 1:
  219. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/analplugpirscligub.jpg''">anus</a> is currently filled with your butt plug.'
  220. rand_anus = rand(0)
  221. if rand_anus = 0:$pcdesc_anusrandom = 'plugged'
  222. $pcdesc_anus = 'plugged'
  223. $pcdesc_anuswordy = 'plug-stuffed'
  224. $anustipe = 'plugged'
  225. elseif pirsG ! 1 and pirsGL = 1:
  226. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/analplugpirsclit.jpg''">anus</a> is currently filled with your butt plug.'
  227. rand_anus = rand(0)
  228. if rand_anus = 0:$pcdesc_anusrandom = 'plugged'
  229. $pcdesc_anus = 'plugged'
  230. $pcdesc_anuswordy = 'plug-stuffed'
  231. $anustipe = 'plugged'
  232. elseif pirsG = 1 and pirsGL ! 1:
  233. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/analplugpirsring.jpg''">anus</a> is currently filled with your butt plug.'
  234. rand_anus = rand(0)
  235. if rand_anus = 0:$pcdesc_anusrandom = 'plugged'
  236. $pcdesc_anus = 'plugged'
  237. $pcdesc_anuswordy = 'plug-stuffed'
  238. $anustipe = 'plugged'
  239. else
  240. $pcs_ass = 'Your <a href="exec:view''images/pc/body/anus/analplugnotanga.jpg''">anus</a> is currently filled with your butt plug.'
  241. rand_anus = rand(0)
  242. if rand_anus = 0:$pcdesc_anusrandom = 'plugged'
  243. $pcdesc_anus = 'plugged'
  244. $pcdesc_anuswordy = 'plug-stuffed'
  245. $anustipe = 'plugged'
  246. end
  247. end
  248. !!!!!!!!!!!!!!!!
  249. !!!!!SIZE AND WEIGHT!!!
  250. !!!!!!!!!!!!!!!!
  251. if dounspell = 0:
  252. pcs_hips = (pcs_hgt * hratio) / 100 + vhips
  253. pcs_waist = (pcs_hips * wratio) / 100 + vofat
  254. pcs_band = (pcs_waist * bratio) / 100 + vofat
  255. pcs_bust = (pcs_waist * bratio) / 100 + nbsize + magicf2b + silicone
  256. pcs_butt = (pcs_hips / 10) + silicone_butt
  257. pcs_cupsize = pcs_bust - pcs_band
  258. !! If the PC has vastly less breast tissue than she does silicone, use a slightly more derogatory term. There is actually not a great way to calculate this; silicone counts almost the same on all body types, even though an increase of 200cc, for example, would be vastly
  259. !! more noticeable on a thinner body than a heavier one. I have experimented with moving where the silicone is factored in to the body shape calculations, but ultimately there is just no better way to do it than how it is now, given the things that increase the amount
  260. !! of silicone in the PC body. The best kludge I can make is working off of stored fat (pcs_weight does actually not do the job at all, as a fat PC and thin PC are almost the same, oddly, in my tests) and making an approximation from there. The amount of the silicone
  261. !! variable does not really equate to any particular real-life cc calculation for implant size, so we cannot go off of that. This will have to do for now.
  262. pcs_bustdisparity = (silicone/10) - salocatnow
  263. if pcs_bustdisparity >=1 and pcs_bustdisparity < 2:
  264. $pcdesc_breastsqualifier = ''
  265. $pcdesc_breastsqualifierinsertive = ''
  266. $pcdesc_breastsword = 'bolt-ons'
  267. pcdesc_breastimplantcheck = 1
  268. elseif pcs_bustdisparity >= 2 and pcs_bustdisparity < 3:
  269. $pcdesc_breastsqualifier = ' semi-spherical'
  270. $pcdesc_breastsqualifierinsertive = ', semi-spherical'
  271. $pcdesc_breastsword = 'bolt-ons'
  272. pcdesc_breastimplantcheck = 1
  273. elseif pcs_bustdisparity >= 3 and pcs_bustdisparity < 4:
  274. $pcdesc_breastsqualifier = ' firm and round'
  275. $pcdesc_breastsqualifierinsertive = ', firm and round'
  276. $pcdesc_breastsword = 'bolt-ons'
  277. pcdesc_breastimplantcheck = 1
  278. !! Already we are about as far as a normal, non-fetishistic human being would get -- the maximum size of implant, the XXL, results in 40 silicone, and an extremely thin and well-kept PC will have a minimum salocatnow of 1.
  279. !! That means that anything below this line means it was a very intentional move toward sexual objectification, as it could only come from fillable or string implants (and on a thin frame, no less), so we can take some liberties.
  280. elseif pcs_bustdisparity >= 4 and pcs_bustdisparity < 5:
  281. $pcdesc_breastsqualifier = ' clearly man-made'
  282. $pcdesc_breastsqualifierinsertive = ', clearly man-made'
  283. $pcdesc_breastsword = 'bolt-ons'
  284. pcdesc_breastimplantcheck = 1
  285. elseif pcs_bustdisparity >= 5 and pcs_bustdisparity < 6:
  286. $pcdesc_breastsqualifier = ' plastic fuckdoll'
  287. $pcdesc_breastsqualifierinsertive = ', plastic fuckdoll'
  288. $pcdesc_breastsword = 'bolt-ons'
  289. pcdesc_breastimplantcheck = 1
  290. elseif pcs_bustdisparity >= 6 and pcs_bustdisparity < 7:
  291. $pcdesc_breastsqualifier = ' walking fucktoy'
  292. $pcdesc_breastsqualifierinsertive = ', walking fucktoy'
  293. $pcdesc_breastsword = 'bolt-ons'
  294. pcdesc_breastimplantcheck = 1
  295. elseif pcs_bustdisparity >= 7 and pcs_bustdisparity < 8:
  296. $pcdesc_breastsqualifier = ' laughably overdone fuckdoll'
  297. $pcdesc_breastsqualifierinsertive = ', laughably overdone fuckdoll'
  298. $pcdesc_breastsword = 'bolt-ons'
  299. pcdesc_breastimplantcheck = 1
  300. elseif pcs_bustdisparity >= 8:
  301. $pcdesc_breastsqualifier = ' $pcdesc_haircolourwordy overdone fuckdoll'
  302. $pcdesc_breastsqualifierinsertive = ', $pcdesc_haircolourwordy overdone fuckdoll'
  303. $pcdesc_breastsword = 'bolt-ons'
  304. pcdesc_breastimplantcheck = 1
  305. !! This triggers if they have fake breasts, but they are not obviously, blatantly fake breasts. In fact, this should be what triggers most of the time with a PC who has implants, given average cases.
  306. elseif pcs_bustdisparity < 1 and silicone > 0:
  307. if pcs_cupsize <= 30:$pcdesc_breastsword = 'breasts'
  308. if pcs_cupsize > 30:$pcdesc_breastsword = 'tits'
  309. $pcdesc_breastsqualifier = ''
  310. $pcdesc_breastsqualifierinsertive = ''
  311. pcdesc_breastimplantcheck = 1
  312. !! For all-natural PCs.
  313. else
  314. if pcs_cupsize <= 30:$pcdesc_breastsword = 'breasts'
  315. if pcs_cupsize > 30:$pcdesc_breastsword = 'tits'
  316. $pcdesc_breastsqualifier = ''
  317. $pcdesc_breastsqualifierinsertive = ''
  318. pcdesc_breastimplantcheck = 0
  319. end
  320. !! These will not be used below, but can be referenced by descriptive writers in case they want to be able to quickly reference whether or not the PC has implants, as in "He reaches up and cups your<<$pcdesc_breastsfakeinsertive>> breasts."
  321. if pcdesc_breastimplantcheck = 1:$pcdesc_breastsfakeinsertive = ' fake'
  322. if pcdesc_breastimplantcheck = 0:$pcdesc_breastsfakeinsertive = ''
  323. if pcs_cupsize <= 5:
  324. tits = 0
  325. $titsize = 'AA cup'
  326. rand_breasts = rand(0,1)
  327. if rand_breasts = 0:$pcdesc_breastsrandom = 'tiny'
  328. if rand_breasts = 1:$pcdesc_breastsrandom = 'barely-there'
  329. !! Honestly, I am not even sure it is possible to have silicone and be this small. But just in case...
  330. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'scarcely-augmented<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  331. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'tiny, mosquito-bite <<$pcdesc_breastsword>>'
  332. $pcdesc_breasts = 'tiny'
  333. elseif pcs_cupsize <= 10:
  334. tits = 1
  335. $titsize = 'A cup'
  336. rand_breasts = rand(0,1)
  337. if rand_breasts = 0:$pcdesc_breastsrandom = 'petite'
  338. if rand_breasts = 1:$pcdesc_breastsrandom = 'smaller than a handful'
  339. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'barely modified<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  340. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'petite, puffy little <<$pcdesc_breastsword>>'
  341. $pcdesc_breasts = 'petite'
  342. elseif pcs_cupsize <= 15:
  343. tits = 2
  344. $titsize = 'B cup'
  345. rand_breasts = rand(0,1)
  346. if rand_breasts = 0:$pcdesc_breastsrandom = 'small'
  347. if rand_breasts = 1:$pcdesc_breastsrandom = 'sporty'
  348. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'small, subtly augmented<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  349. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'small, handful-sized <<$pcdesc_breastsword>>'
  350. $pcdesc_breasts = 'small'
  351. elseif pcs_cupsize <= 20:
  352. tits = 3
  353. $titsize = 'C cup'
  354. rand_breasts = rand(0,1)
  355. if rand_breasts = 0:$pcdesc_breastsrandom = 'ample'
  356. if rand_breasts = 1:$pcdesc_breastsrandom = 'average-sized'
  357. !! At this point PCs should now be able to get the bolted-on look, so we need to be a bit more careful to avoid contradictions in descriptive phrasing. It is OK to have some repetition here for a cup size or two.
  358. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'ample, silicone-padded<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  359. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'ample, handful-sized <<$pcdesc_breastsword>>'
  360. $pcdesc_breasts = 'ample'
  361. elseif pcs_cupsize <= 25:
  362. tits = 4
  363. $titsize = 'D cup'
  364. rand_breasts = rand(0,1)
  365. if rand_breasts = 0:$pcdesc_breastsrandom = 'full'
  366. if rand_breasts = 1:$pcdesc_breastsrandom = 'hefty'
  367. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'full, silicone-padded<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  368. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'jiggly, womanly full <<$pcdesc_breastsword>>'
  369. $pcdesc_breasts = 'full'
  370. elseif pcs_cupsize <= 30:
  371. tits = 5
  372. $titsize = 'E cup'
  373. rand_breasts = rand(0,2)
  374. if rand_breasts = 0:$pcdesc_breastsrandom = 'generous'
  375. if rand_breasts = 1:$pcdesc_breastsrandom = 'heavy'
  376. if rand_breasts = 2:$pcdesc_breastsrandom = 'fairly large'
  377. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'heavy, fake<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  378. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'soft, generously-sized <<$pcdesc_breastsword>>'
  379. $pcdesc_breasts = 'generous'
  380. elseif pcs_cupsize <= 35:
  381. !! From F cup and onward, breasts are now automatically referred to as tits, since that is how most others will see them. It is a subtle sexualisation, but it should be one that matches with the pre-generated descriptions from here on out.
  382. tits = 6
  383. $titsize = 'F cup'
  384. rand_breasts = rand(0,1)
  385. if rand_breasts = 0:$pcdesc_breastsrandom = 'big'
  386. if rand_breasts = 1:$pcdesc_breastsrandom = 'large'
  387. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'big, implant-stuffed<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  388. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'big, jiggly and sizeable <<$pcdesc_breastsword>>'
  389. $pcdesc_breasts = 'big'
  390. elseif pcs_cupsize <= 40:
  391. tits = 7
  392. $titsize = 'G cup'
  393. rand_breasts = rand(0,1)
  394. if rand_breasts = 0:$pcdesc_breastsrandom = 'considerably large'
  395. if rand_breasts = 1:$pcdesc_breastsrandom = 'quite large'
  396. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'considerably large, implant-stuffed<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  397. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'quite large and jiggly <<$pcdesc_breastsword>>'
  398. $pcdesc_breasts = 'considerably large'
  399. elseif pcs_cupsize <= 45:
  400. tits = 8
  401. $titsize = 'H cup'
  402. rand_breasts = rand(0,1)
  403. if rand_breasts = 0:$pcdesc_breastsrandom = 'extremely large'
  404. if rand_breasts = 1:$pcdesc_breastsrandom = 'incredibly stacked'
  405. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'extremely large, silicone-stuffed<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  406. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'extremely large, over-stacked <<$pcdesc_breastsword>>'
  407. $pcdesc_breasts = 'extremely large'
  408. elseif pcs_cupsize <= 50:
  409. tits = 9
  410. $titsize = 'I cup'
  411. rand_breasts = rand(0,2)
  412. if rand_breasts = 0:$pcdesc_breastsrandom = 'huge'
  413. if rand_breasts = 1:$pcdesc_breastsrandom = 'impractically big'
  414. if rand_breasts = 2:$pcdesc_breastsrandom = 'figure-dominating'
  415. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'huge, silicone-swollen<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  416. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'huge, wholly impractical <<$pcdesc_breastsword>>'
  417. $pcdesc_breasts = 'huge'
  418. elseif pcs_cupsize <= 55:
  419. tits = 10
  420. $titsize = 'J cup'
  421. rand_breasts = rand(0,1)
  422. if rand_breasts = 0:$pcdesc_breastsrandom = 'massive'
  423. if rand_breasts = 1:$pcdesc_breastsrandom = 'enormous'
  424. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'massively fake<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  425. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'massive, attention-grabbing <<$pcdesc_breastsword>>'
  426. $pcdesc_breasts = 'massive'
  427. else
  428. tits = 11
  429. $titsize = 'K cup'
  430. rand_breasts = rand(0,2)
  431. if rand_breasts = 0:$pcdesc_breastsrandom = 'whorishly oversized'
  432. if rand_breasts = 1:$pcdesc_breastsrandom = 'fucktoy-appropriate'
  433. if rand_breasts = 2:$pcdesc_breastsrandom = 'ridiculously big'
  434. if pcdesc_breastimplantcheck = 1:$pcdesc_breastswordy = 'whorishly oversized<<$pcdesc_breastsqualifierinsertive>> <<$pcdesc_breastsword>>'
  435. if pcdesc_breastimplantcheck = 0:$pcdesc_breastswordy = 'ridiculously big and figure-dominating <<$pcdesc_breastsword>>'
  436. $pcdesc_breasts = 'whorishly oversized'
  437. end
  438. !!pcs_weight: Svetas weight in kg
  439. !!Optimal Weight (170cm): 60kg, 60 salo
  440. !!This is an approximation, so that a sveta with a different height has the same BMI for the same salo values.
  441. !!The default height of 170 cm is used as a starting point. The bmi deviates by 0.06 for a deviation of 10cm and 0.4 for a deviation of 20cm.
  442. pcs_weight = 30 + salo / 2 + (pcs_hgt - 170) * 7 / 10
  443. !!Do not remove (julzor)
  444. !!This is the old more complex function, but it doesn''t work correctly.
  445. !!This variable is actually only used ONCE (except for the BMI calculation), when stripping, to see if you fall off the pole from being too heavy. I am reluctant to touch it, since the math is not explained. Maybe later.
  446. !!Weight = (height in cm x bottom of average weight in kilos for a 170cm female / 170cm + (hip modifier + 2 x overrun fat)/4 + cup size
  447. !!pcs_weight = (pcs_hgt * 62 / 170) + (vhips + (vofat * 2)) / 4 + tits
  448. !!BMI Calculation
  449. bmi_calc = 10000 * pcs_weight / (pcs_hgt * pcs_hgt)
  450. !!BMI Descriptions
  451. if bmi_calc < 16:
  452. $bmi_desc = 'You are severely underweight.'
  453. elseif bmi_calc >= 16 and bmi_calc < 19:
  454. $bmi_desc = 'You are underweight'
  455. elseif bmi_calc >= 19 and bmi_calc < 25:
  456. $bmi_desc = 'You have a normal, healthy weight.'
  457. elseif bmi_calc >= 25 and bmi_calc < 30:
  458. $bmi_desc = 'You are overweight.'
  459. elseif bmi_calc >= 30 and bmi_calc < 35:
  460. $bmi_desc = 'You are moderately obese.'
  461. elseif bmi_calc >= 35 and bmi_calc < 40:
  462. $bmi_desc = 'You are severely obese.'
  463. elseif bmi_calc >= 40 and bmi_calc < 45:
  464. $bmi_desc = 'You are very severely obese.'
  465. elseif bmi_calc >= 45:
  466. $bmi_desc = 'You are morbidly obese.'
  467. end
  468. end
  469. !!! Maruda Hair Mod
  470. if pcs_hairlng <= 80:
  471. hpigtail = 0
  472. hscrunchw = 0
  473. hpingripw = 0
  474. if defcurly = 0:
  475. curly = 0
  476. else
  477. !! This sets curly hair to as high a number as possible to prevent it straightening in error
  478. curly = 2147483647
  479. end
  480. hbraids = 0
  481. if pcs_hairlng <= 30 and hbangs = 1:hbangs = 0
  482. end
  483. if pcs_hairlng > 800:
  484. hpingripw = 0
  485. hbraids = 0
  486. end
  487. if pcs_hairlng > 800 and hpigtail >= 1:
  488. hscrunchw = 0
  489. hpigtail = 0
  490. end
  491. if hbraids >= 1:
  492. hscrunchw = 0
  493. hpingripw = 0
  494. hbangs = 0
  495. hpigtail = 0
  496. end
  497. if pcs_hairbsh = 0:
  498. if pcs_hairlng > 30:
  499. $pcs_hairbsh = '<b>tangled</b>. You should comb it to keep it healthy'
  500. rand_hairmess = rand(0,3)
  501. if rand_hairmess = 0:$pcdesc_hairmessrandom = 'tangled'
  502. if rand_hairmess = 1:$pcdesc_hairmessrandom = 'tousled'
  503. if rand_hairmess = 2:$pcdesc_hairmessrandom = 'disheveled'
  504. if rand_hairmess = 3:$pcdesc_hairmessrandom = 'mussed'
  505. $pcdesc_hairmess = 'tangled'
  506. $pcdesc_hairmessinsertive = ', tangled'
  507. $pcdesc_hairmesswordy = 'tangled, poorly-kept'
  508. else
  509. $pcs_hairbsh = '<b>messy</b>. You should style it to keep it looking good'
  510. rand_hairmess = rand(0,1)
  511. if rand_hairmess = 0:$pcdesc_hairmessrandom = 'messy'
  512. if rand_hairmess = 1:$pcdesc_hairmessrandom = 'unkempt'
  513. $pcdesc_hairmess = 'messy'
  514. $pcdesc_hairmessinsertive = ', messy'
  515. $pcdesc_hairmesswordy = 'messy, poorly-kept'
  516. end
  517. else
  518. $pcs_hairbsh = 'neatly styled'
  519. rand_hairmess = rand(0,1)
  520. if rand_hairmess = 0:$pcdesc_hairmessrandom = 'neat'
  521. if rand_hairmess = 1:$pcdesc_hairmessrandom = 'well-kept'
  522. $pcdesc_hairmess = 'neat'
  523. $pcdesc_hairmessinsertive = ', neat'
  524. $pcdesc_hairmesswordy = 'neat, well-maintained'
  525. end
  526. if curly <= 0:
  527. $curly = 'straight, slightly wavy '
  528. !! Not a lot of variety here, I know -- it is for future compatibility, so everything can have be reached in the same fashion.
  529. rand_hairtexture = rand(0)
  530. rand_hairword = rand(0)
  531. if rand_hairtexture = 0:$pcdesc_hairtexturerandom = 'straight'
  532. if rand_hairword = 0:$pcdesc_hairwordrandom = 'locks'
  533. $pcdesc_hairtexturewordy = 'straight, slightly wavy'
  534. $pcdesc_hairwordwordy = 'locks'
  535. $pcdesc_hairtexture = 'straight'
  536. $pcdesc_hairword = 'locks'
  537. else
  538. $curly = 'curly '
  539. rand_hairtexture = rand(0)
  540. rand_hairword = rand(0,1)
  541. if rand_hairtexture = 0:$pcdesc_hairtexturerandom = 'curly'
  542. if rand_hairword = 0:$pcdesc_hairwordrandom = 'curls'
  543. if rand_hairword = 1:$pcdesc_hairwordrandom = 'ringlets'
  544. $pcdesc_hairtexturewordy = 'playfully curly'
  545. $pcdesc_hairwordwordy = 'curls'
  546. $pcdesc_hairtexture = 'curly'
  547. $pcdesc_hairword = 'curls'
  548. end
  549. !! If you are baffled by the need for a forehead descriptor here, it is primarily just for writing about cumshots. I honestly cannot think of another use case. Other variables largely just for compatibility.
  550. if hbangs <= 0:
  551. $hbangs = ''
  552. rand_bangs = rand(0)
  553. if rand_bangs = 0:$pcdesc_foreheadrandom = 'forehead'
  554. $pcdesc_foreheadwordy = 'forehead'
  555. $pcdesc_forehead = 'forehead'
  556. else
  557. $hbangs = ', with a fringe covering your forehead'
  558. rand_bangs = rand(0,1)
  559. if rand_bangs = 0:$pcdesc_foreheadrandom = 'bangs'
  560. if rand_bangs = 1:$pcdesc_foreheadrandom = 'fringe'
  561. $pcdesc_foreheadwordy = 'fringe'
  562. $pcdesc_forehead = 'bangs'
  563. end
  564. !! Be careful when adding random-assigned synonyms to hair colours to ensure that you do not accidentally describe a different shade of the colour you are describing.
  565. !! Honestly, we probably do not need all the light medium dark colour splitting for the bright colours, but it is sadly too late to go back on them.
  566. if pcs_haircol = 0:
  567. $pcs_haircol = 'black'
  568. $pcdesc_haircolour = 'black'
  569. rand_hair = rand(0,9)
  570. if rand_hair = 0:$pcdesc_hairrandom = 'black'
  571. if rand_hair = 1:$pcdesc_hairrandom = 'ebony'
  572. if rand_hair = 2:$pcdesc_hairrandom = 'obsidian'
  573. if rand_hair = 3:$pcdesc_hairrandom = 'jet-black'
  574. if rand_hair = 4:$pcdesc_hairrandom = 'charcoal black'
  575. if rand_hair = 5:$pcdesc_hairrandom = 'raven black'
  576. if rand_hair = 6:$pcdesc_hairrandom = 'sable'
  577. if rand_hair = 7:$pcdesc_hairrandom = 'inky-black'
  578. if rand_hair = 8:$pcdesc_hairrandom = 'coal-black'
  579. if rand_hair = 9:$pcdesc_hairrandom = 'pitch-black'
  580. $pcdesc_haircolourwordy = 'dark, obsidian-black'
  581. elseif pcs_haircol = 1:
  582. $pcs_haircol = 'brown'
  583. $pcdesc_haircolour = 'brown'
  584. rand_hair = rand(0,2)
  585. if rand_hair = 0:$pcdesc_hairrandom = 'brown'
  586. if rand_hair = 1:$pcdesc_hairrandom = 'russet brown'
  587. if rand_hair = 2:$pcdesc_hairrandom = 'chestnut brown'
  588. $pcdesc_haircolourwordy = 'russet brown'
  589. elseif pcs_haircol = 2:
  590. $pcs_haircol = 'red'
  591. $pcdesc_haircolour = 'red'
  592. !! Remember, this is not the vibrant dyed red colour, this is a natural red
  593. rand_hair = rand(0,2)
  594. if rand_hair = 0:$pcdesc_hairrandom = 'fiery red'
  595. if rand_hair = 1:$pcdesc_hairrandom = 'coppery red'
  596. if rand_hair = 2:$pcdesc_hairrandom = 'ginger'
  597. $pcdesc_haircolourwordy = 'fiery red'
  598. elseif pcs_haircol = 3:
  599. $pcs_haircol = 'blonde'
  600. $pcdesc_haircolour = 'blonde'
  601. rand_hair = rand(0,3)
  602. if rand_hair = 0:$pcdesc_hairrandom = 'blonde'
  603. if rand_hair = 1:$pcdesc_hairrandom = 'golden-blonde'
  604. if rand_hair = 2:$pcdesc_hairrandom = 'golden'
  605. if rand_hair = 3:$pcdesc_hairrandom = 'fair, blonde'
  606. $pcdesc_haircolourwordy = 'beautiful golden-blonde'
  607. elseif pcs_haircol = 4:
  608. $pcs_haircol = 'light red'
  609. $pcdesc_haircolour = 'light red'
  610. rand_hair = rand(0,2)
  611. if rand_hair = 0:$pcdesc_hairrandom = 'strawberry blonde'
  612. if rand_hair = 1:$pcdesc_hairrandom = 'fire-engine red'
  613. if rand_hair = 2:$pcdesc_hairrandom = 'scarlet'
  614. $pcdesc_haircolourwordy = 'glowing, pale red'
  615. elseif pcs_haircol = 5:
  616. $pcs_haircol = 'dark blue'
  617. $pcdesc_haircolour = 'dark blue'
  618. rand_hair = rand(0,2)
  619. if rand_hair = 0:$pcdesc_hairrandom = 'dark blue'
  620. if rand_hair = 1:$pcdesc_hairrandom = 'blurple'
  621. if rand_hair = 2:$pcdesc_hairrandom = 'midnight blue'
  622. $pcdesc_haircolourwordy = 'rich, purplish-blue'
  623. elseif pcs_haircol = 6:
  624. $pcs_haircol = 'blue'
  625. $pcdesc_haircolour = 'blue'
  626. rand_hair = rand(0,1)
  627. if rand_hair = 0:$pcdesc_hairrandom = 'blue'
  628. if rand_hair = 1:$pcdesc_hairrandom = 'electric blue'
  629. $pcdesc_haircolourwordy = 'vibrant, electric blue'
  630. elseif pcs_haircol = 7:
  631. $pcs_haircol = 'light blue'
  632. $pcdesc_haircolour = 'light blue'
  633. rand_hair = rand(0,3)
  634. if rand_hair = 0:$pcdesc_hairrandom = 'light blue'
  635. if rand_hair = 1:$pcdesc_hairrandom = 'azure'
  636. if rand_hair = 2:$pcdesc_hairrandom = 'pale blue'
  637. if rand_hair = 3:$pcdesc_hairrandom = 'candy-floss blue'
  638. $pcdesc_haircolourwordy = 'pale, candy-coloured blue'
  639. elseif pcs_haircol = 8:
  640. $pcs_haircol = 'dark green'
  641. $pcdesc_haircolour = 'dark green'
  642. rand_hair = rand(0)
  643. if rand_hair = 0:$pcdesc_hairrandom = 'dark green'
  644. !! Emerald green is actually a lighter colour, but with the specific qualifier of deep, it can be used here for lack of a better one.
  645. $pcdesc_haircolourwordy = 'deep, emerald-green'
  646. elseif pcs_haircol = 9:
  647. $pcs_haircol = 'green'
  648. $pcdesc_haircolour = 'green'
  649. rand_hair = rand(0,2)
  650. if rand_hair = 0:$pcdesc_hairrandom = 'green'
  651. if rand_hair = 1:$pcdesc_hairrandom = 'forest green'
  652. if rand_hair = 2:$pcdesc_hairrandom = 'fern-green'
  653. $pcdesc_haircolourwordy = 'vibrant, forest-green'
  654. elseif pcs_haircol = 10:
  655. $pcs_haircol = 'light green'
  656. $pcdesc_haircolour = 'light green'
  657. rand_hair = rand(0,4)
  658. if rand_hair = 0:$pcdesc_hairrandom = 'light green'
  659. if rand_hair = 1:$pcdesc_hairrandom = 'pale green'
  660. if rand_hair = 2:$pcdesc_hairrandom = 'leaf-green'
  661. if rand_hair = 3:$pcdesc_hairrandom = 'minty green'
  662. if rand_hair = 4:$pcdesc_hairrandom = 'candy-floss green'
  663. $pcdesc_haircolourwordy = 'pale, leaf-green'
  664. elseif pcs_haircol = 11:
  665. $pcs_haircol = 'dark pink'
  666. $pcdesc_haircolour = 'dark pink'
  667. rand_hair = rand(0,1)
  668. if rand_hair = 0:$pcdesc_hairrandom = 'dark pink'
  669. if rand_hair = 1:$pcdesc_hairrandom = 'purplish-pink'
  670. $pcdesc_haircolourwordy = 'dark, purplish-pink'
  671. elseif pcs_haircol = 12:
  672. $pcs_haircol = 'pink'
  673. $pcdesc_haircolour = 'pink'
  674. rand_hair = rand(0,4)
  675. if rand_hair = 0:$pcdesc_hairrandom = 'bubblegum-pink'
  676. if rand_hair = 1:$pcdesc_hairrandom = 'Barbie pink'
  677. if rand_hair = 2:$pcdesc_hairrandom = 'fuchsia'
  678. if rand_hair = 3:$pcdesc_hairrandom = 'pink'
  679. if rand_hair = 4:$pcdesc_hairrandom = 'bright pink'
  680. $pcdesc_haircolourwordy = 'bright, bubblegum-pink'
  681. elseif pcs_haircol = 13:
  682. $pcs_haircol = 'light pink'
  683. $pcdesc_haircolour = 'light pink'
  684. rand_hair = rand(0,5)
  685. if rand_hair = 0:$pcdesc_hairrandom = 'light pink'
  686. if rand_hair = 1:$pcdesc_hairrandom = 'pale pink'
  687. if rand_hair = 2:$pcdesc_hairrandom = 'babydoll pink'
  688. if rand_hair = 3:$pcdesc_hairrandom = 'China pink'
  689. if rand_hair = 2:$pcdesc_hairrandom = 'cotton-candy pink'
  690. if rand_hair = 3:$pcdesc_hairrandom = 'candy-floss pink'
  691. $pcdesc_haircolourwordy = 'pale, cotton-candy pink'
  692. elseif pcs_haircol = 14:
  693. $pcs_haircol = 'dark purple'
  694. $pcdesc_haircolour = 'dark purple'
  695. rand_hair = rand(0,3)
  696. if rand_hair = 0:$pcdesc_hairrandom = 'dark purple'
  697. if rand_hair = 1:$pcdesc_hairrandom = 'deep purple'
  698. if rand_hair = 2:$pcdesc_hairrandom = 'midnight purple'
  699. if rand_hair = 3:$pcdesc_hairrandom = 'indigo'
  700. $pcdesc_haircolourwordy = 'deep, bluish-purple'
  701. elseif pcs_haircol = 15:
  702. $pcs_haircol = 'purple'
  703. $pcdesc_haircolour = 'purple'
  704. rand_hair = rand(0,2)
  705. if rand_hair = 0:$pcdesc_hairrandom = 'purple'
  706. if rand_hair = 1:$pcdesc_hairrandom = 'plum purple'
  707. if rand_hair = 2:$pcdesc_hairrandom = 'royal purple'
  708. $pcdesc_haircolourwordy = 'rich, royal purple'
  709. elseif pcs_haircol = 16:
  710. $pcs_haircol = 'light purple'
  711. $pcdesc_haircolour = 'light purple'
  712. rand_hair = rand(0,3)
  713. if rand_hair = 0:$pcdesc_hairrandom = 'light purple'
  714. if rand_hair = 1:$pcdesc_hairrandom = 'pale purple'
  715. if rand_hair = 2:$pcdesc_hairrandom = 'amethyst coloured'
  716. if rand_hair = 3:$pcdesc_hairrandom = 'lavender'
  717. $pcdesc_haircolourwordy = 'pale, floral purple'
  718. elseif pcs_haircol = 17:
  719. $pcs_haircol = 'orange'
  720. $pcdesc_haircolour = 'orange'
  721. rand_hair = rand(0,2)
  722. if rand_hair = 0:$pcdesc_hairrandom = 'orange'
  723. if rand_hair = 1:$pcdesc_hairrandom = 'pumpkin orange'
  724. if rand_hair = 2:$pcdesc_hairrandom = 'bright orange'
  725. $pcdesc_haircolourwordy = 'bright, fiery orange'
  726. elseif pcs_haircol = 18:
  727. $pcs_haircol = 'dark red'
  728. $pcdesc_haircolour = 'dark red'
  729. rand_hair = rand(0,2)
  730. if rand_hair = 0:$pcdesc_hairrandom = 'dark red'
  731. if rand_hair = 1:$pcdesc_hairrandom = 'wine red'
  732. if rand_hair = 2:$pcdesc_hairrandom = 'auburn'
  733. $pcdesc_haircolourwordy = 'deep, seductive red'
  734. elseif pcs_haircol = 19:
  735. $pcs_haircol = 'medium red'
  736. $pcdesc_haircolour = 'medium red'
  737. rand_hair = rand(0,2)
  738. if rand_hair = 0:$pcdesc_hairrandom = 'medium red'
  739. if rand_hair = 1:$pcdesc_hairrandom = 'cherry red'
  740. if rand_hair = 2:$pcdesc_hairrandom = 'bronze'
  741. $pcdesc_haircolourwordy = 'strong, fiery red'
  742. !! This below is a catch-all, it should not actually ever wind up occurring, but just in case it does...
  743. else
  744. $pcs_haircol = 'strangely-coloured'
  745. $pcdesc_haircolour = 'strangely-coloured'
  746. rand_hair = rand(0,1)
  747. if rand_hair = 0:$pcdesc_hairrandom = 'strangely-coloured'
  748. if rand_hair = 1:$pcdesc_hairrandom = 'multicoloured'
  749. $pcdesc_haircolourwordy = 'exceptionally variegated'
  750. end
  751. if hscrunchw <= 0:
  752. $hscrunch = ''
  753. $hpigtail = ''
  754. rand_hairstyle = rand(0)
  755. rand_hairobject = rand(0)
  756. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'loose'
  757. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'hair'
  758. $pcdesc_hairstyle = 'loose'
  759. $pcdesc_hairobject = 'hair'
  760. $pcdesc_hairobjectwordy = 'loose and free <<$pcs_haircol>> hair'
  761. elseif hscrunchw = 1:
  762. $hscrunch = ' A hair-tie holds your hair in place with a ponytail.'
  763. $hpigtail = ''
  764. rand_hairstyle = rand(0)
  765. rand_hairobject = rand(0)
  766. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'ponytailed'
  767. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'ponytail'
  768. $pcdesc_hairstyle = 'ponytailed'
  769. $pcdesc_hairobject = 'ponytail'
  770. $pcdesc_hairobjectwordy = 'tight, high-set <<$pcs_haircol>> ponytail'
  771. else
  772. !! The actual, specific setting for hscrunchw when pigtails are desired is 2, but it is better to have a catch-all. Adjust the else above into an elseif set for 2 if more styles involving scrunchies are added.
  773. $hscrunch = ''
  774. $hpigtail = ' Two scrunchies hold your hair up into two cute, playful twin tails.'
  775. rand_hairstyle = rand(0)
  776. rand_hairobject = rand(0)
  777. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'pigtailed'
  778. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'pigtails'
  779. $pcdesc_hairstyle = 'pigtailed'
  780. $pcdesc_hairobject = 'pigtails'
  781. $pcdesc_hairobjectwordy = 'youthful, playful and flirty <<$pcs_haircol>> pigtails'
  782. end
  783. if hpingripw <= 0:
  784. $hpingrip = ''
  785. rand_hairstyle = rand(0)
  786. rand_hairobject = rand(0)
  787. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'loose'
  788. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'hair'
  789. $pcdesc_hairstyle = 'loose'
  790. $pcdesc_hairobject = 'hair'
  791. $pcdesc_hairobjectwordy = 'loose and free <<$pcs_haircol>> hair'
  792. else
  793. $hpingrip = ' Hair-pins hold your hair in place in a stylish updo.'
  794. rand_hairstyle = rand(0,1)
  795. rand_hairobject = rand(0)
  796. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'upswept'
  797. if rand_hairstyle = 1:$pcdesc_hairstylerandom = 'ornately-pinned'
  798. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'updo'
  799. $pcdesc_hairstyle = 'upswept'
  800. $pcdesc_hairobject = 'updo'
  801. $pcdesc_hairobjectwordy = 'ornate, intricately-pinned <<$pcs_haircol>> updo'
  802. end
  803. if hbraids <= 0:
  804. $hbraids = ''
  805. rand_hairstyle = rand(0)
  806. rand_hairobject = rand(0)
  807. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'loose'
  808. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'hair'
  809. $pcdesc_hairstyle = 'loose'
  810. $pcdesc_hairobject = 'hair'
  811. $pcdesc_hairobjectwordy = 'loose and free <<$pcs_haircol>> hair'
  812. else
  813. $hbraids = ' Your hair is beautifully braided.'
  814. rand_hairstyle = rand(0,1)
  815. rand_hairobject = rand(0,1)
  816. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'braided'
  817. if rand_hairstyle = 0:$pcdesc_hairstylerandom = 'plaited'
  818. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'braids'
  819. if rand_hairobject = 0:$pcdesc_hairobjectrandom = 'plaits'
  820. $pcdesc_hairstyle = 'braided'
  821. $pcdesc_hairobject = 'braid'
  822. $pcdesc_hairobjectwordy = 'delicately-wound <<$pcs_haircol>> braid'
  823. end
  824. if avatar_hair = 1:
  825. $hair = $av_hair
  826. !! I do not really understand how the avatar system works in terms of hair growth and such, so these descriptors will just have to do
  827. $pcdesc_hairlength = 'normal length'
  828. $pcdesc_hairlengthwordy = 'normal length'
  829. else
  830. if pcs_hairlng <= 30:
  831. $hair = 'You have very short <<$pcs_haircol>> hair. It doesn''t cover your ears, and looks a little masculine. Nevertheless, some people like this style as it''s easy to take care of.'
  832. rand_hairlength = rand(0,1)
  833. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'extremely short'
  834. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'boyishly short'
  835. $pcdesc_hairlength = 'extremely short'
  836. $pcdesc_hairlengthwordy = 'short, and altogether rather boyish'
  837. elseif pcs_hairlng > 30 and pcs_hairlng <= 80:
  838. $hair = 'You have short <<$pcs_haircol>> hair which just covers your ears to their lobes. It''s a modern, classy hairstyle. Currently your hair is <<$pcs_hairbsh>>.'
  839. rand_hairlength = rand(0,2)
  840. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'short'
  841. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'pixie-cut'
  842. if rand_hairlength = 2:$pcdesc_hairlengthrandom = 'androgynously short'
  843. $pcdesc_hairlength = 'short'
  844. $pcdesc_hairlengthwordy = 'short, page-boy'
  845. elseif pcs_hairlng > 80 and pcs_hairlng <= 160:
  846. $hair = 'You have <<$curly>><<$pcs_haircol>> hair<<$hbangs>>. Your hair goes down to your chin line and can be considered of a medium length, which fits almost all face shapes. Your hair is <<$pcs_hairbsh>> at the moment. <<$hscrunch>><<$hpingrip>><<$hpigtail>>'
  847. rand_hairlength = rand(0,1)
  848. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'medium'
  849. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'average'
  850. $pcdesc_hairlength = 'medium'
  851. $pcdesc_hairlengthwordy = 'medium-length'
  852. elseif pcs_hairlng > 160 and pcs_hairlng <= 260:
  853. $hair = 'You have <<$curly>><<$pcs_haircol>> hair<<$hbangs>>. Your hair reaches your shoulders with several strands going just beyond. Currently your hair is <<$pcs_hairbsh>>. <<$hscrunch>><<$hpingrip>><<$hbraids>><<$hpigtail>>'
  854. rand_hairlength = rand(0)
  855. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'moderate'
  856. $pcdesc_hairlength = 'moderate'
  857. $pcdesc_hairlengthwordy = 'shoulder-length'
  858. elseif pcs_hairlng > 260 and pcs_hairlng <= 400:
  859. $hair = 'You have <<$curly>><<$pcs_haircol>> hair<<$hbangs>>. As your hair reaches your bra line, hairdressers would consider this a rather long style, yet beautiful looks are created with this length. Your hair is <<$pcs_hairbsh>>. <<$hscrunch>><<$hpingrip>><<$hbraids>><<$hpigtail>>'
  860. rand_hairlength = rand(0,1)
  861. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'long'
  862. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'lengthy'
  863. $pcdesc_hairlength = 'long'
  864. $pcdesc_hairlengthwordy = 'long, past the shoulders'
  865. elseif pcs_hairlng > 400 and pcs_hairlng <= 600:
  866. $hair = 'You have <<$curly>><<$pcs_haircol>> hair<<$hbangs>>. As your hair reaches your back, hairdressers would consider this a rather long hair style, yet beautiful looks are created with this length. Your hair is <<$pcs_hairbsh>>. <<$hscrunch>><<$hpingrip>><<$hbraids>><<$hpigtail>>'
  867. rand_hairlength = rand(0,3)
  868. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'very long'
  869. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'rather lengthy'
  870. if rand_hairlength = 2:$pcdesc_hairlengthrandom = 'quite long'
  871. if rand_hairlength = 3:$pcdesc_hairlengthrandom = 'back-length'
  872. $pcdesc_hairlength = 'very long'
  873. $pcdesc_hairlengthwordy = 'very long, back-length'
  874. elseif pcs_hairlng > 600 and pcs_hairlng <= 800:
  875. $hair = 'You have <<$curly>><<$pcs_haircol>> hair<<$hbangs>>. As your hair reaches your butt, hairdressers would consider this a very long hair style, yet beautiful looks are created with this length. Your hair is <<$pcs_hairbsh>>. <<$hscrunch>><<$hpingrip>><<$hbraids>><<$hpigtail>>'
  876. rand_hairlength = rand(0,1)
  877. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'extremely long'
  878. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'waist-length'
  879. $pcdesc_hairlength = 'extremely long'
  880. $pcdesc_hairlengthwordy = 'extremely long and waist-length'
  881. else
  882. $hair = 'You have extremely long <<$pcs_haircol>> hair<<$hbangs>>. Reaching all the way past your butt, even Rapunzel would be jealous. Your hair is currently <<$pcs_hairbsh>>. <<$hscrunch>><<$hbraids>>'
  883. rand_hairlength = rand(0,1)
  884. if rand_hairlength = 0:$pcdesc_hairlengthrandom = 'exceptionally long'
  885. if rand_hairlength = 1:$pcdesc_hairlengthrandom = 'incredibly lengthy'
  886. $pcdesc_hairlength = 'incredibly long'
  887. $pcdesc_hairlengthwordy = 'exceptionally lengthy and princess-like'
  888. end
  889. end
  890. !! A pair of ready-made long strings for writers to pull from for descriptions
  891. $pcdesc_fullhair = '<<$pcdesc_hairmess>>, <<$pcdesc_hairlength>> <<$pcs_haircol>> <<$pcdesc_hairword>>'
  892. $pcdesc_fullhairwordy = '<<$pcdesc_hairmess>>, <<$pcdesc_hairlengthwordy>> <<$pcdesc_hairword>> of <<$pcdesc_haircolourwordy>>'
  893. !!! Maruda Hair Mod
  894. !! Appearance factors and calculations
  895. !! If, like me, you are confused by the logic of what initially appear to be arbitrary numbers, it turns out the piercing location value is set to a number to indicate which photo it uses, which is tied to what jewelry you have for the piercing. 10000 means pierced, but no jewelry.
  896. if pirsA > 0 and pirsA < 10000:
  897. $pirsA = 'When you talk to people, they can sometimes get a glimpse of your tongue piercing.'
  898. rand_tongue = rand(0,1)
  899. if rand_tongue = 0:$pcdesc_tonguerandom = 'pierced tongue'
  900. if rand_tongue = 1:$pcdesc_tonguerandom = 'pierced licker'
  901. $pcdesc_tonguewordy = 'barbell-pierced tongue'
  902. $pcdesc_tongue = 'pierced tongue'
  903. else
  904. $pirsA = ''
  905. rand_tongue = rand(0,1)
  906. if rand_tongue = 0:$pcdesc_tonguerandom = 'tongue'
  907. if rand_tongue = 1:$pcdesc_tonguerandom = 'licker'
  908. $pcdesc_tonguewordy = 'tongue'
  909. $pcdesc_tongue = 'tongue'
  910. end
  911. if pirsB > 0 and pirsB < 10000:
  912. $pirsB = ' Your lip is pierced. '
  913. rand_lowerlip = rand(0)
  914. if rand_lowerlip = 0:$pcdesc_lowerliprandom = 'pierced lower lip'
  915. $pcdesc_lowerlipwordy = 'jewelry-studded lower lip'
  916. $pcdesc_lowerlip = 'pierced lower lip'
  917. else
  918. $pirsB = ' '
  919. rand_lowerlip = rand(0)
  920. if rand_lowerlip = 0:$pcdesc_lowerliprandom = 'lower lip'
  921. $pcdesc_lowerlipwordy = 'lower lip'
  922. $pcdesc_lowerlip = 'lower lip'
  923. end
  924. if pirsC > 0 and pirsC < 10000:
  925. $pirsC = 'You are wearing earrings.'
  926. rand_ears = rand(0)
  927. if rand_ears = 0:$pcdesc_earsrandom = 'pierced ears' & $pcdesc_earrandom = 'pierced ear'
  928. $pcdesc_earswordy = 'pierced ears'
  929. $pcdesc_ears = 'pierced ears'
  930. $pcdesc_earwordy = 'pierced ear'
  931. $pcdesc_ear = 'pierced ear'
  932. else
  933. $pirsC = ''
  934. rand_ears = rand(0)
  935. if rand_ears = 0:$pcdesc_earsrandom = 'ears' & $pcdesc_earrandom = 'ear'
  936. $pcdesc_earswordy = 'ears'
  937. $pcdesc_ears = 'ears'
  938. $pcdesc_earwordy = 'ear'
  939. $pcdesc_ear = 'ear'
  940. end
  941. !! Unfortunately there is no real way to tell if it is a pierced septum or a pierced nostril without overhauling the jewelry and other piercing references for now.
  942. if pirsD > 0 and pirsD < 10000:
  943. $pirsD = 'You have a piercing inserted in your nose.'
  944. rand_nose = rand(0)
  945. if rand_nose = 0:$pcdesc_noserandom = 'pierced nose'
  946. $pcdesc_nosewordy = 'jewelry-studded nose'
  947. $pcdesc_nose = 'pierced nose'
  948. else
  949. $pirsD = ''
  950. rand_nose = rand(0)
  951. if rand_nose = 0:$pcdesc_noserandom = 'nose'
  952. $pcdesc_nosewordy = 'nose'
  953. $pcdesc_nose = 'nose'
  954. end
  955. if pirsE > 0 and pirsE < 10000:
  956. $pirsE = 'Your eyebrow is pierced.'
  957. rand_eyebrow = rand(0)
  958. if rand_eyebrow = 0:$pcdesc_eyebrowrandom = 'pierced eyebrow'
  959. $pcdesc_eyebrowwordy = 'pierced eyebrow'
  960. $pcdesc_eyebrow = 'pierced eyebrow'
  961. else
  962. $pirsE = ''
  963. rand_eyebrow = rand(0)
  964. if rand_eyebrow = 0:$pcdesc_eyebrowrandom = 'eyebrow'
  965. $pcdesc_eyebrowwordy = 'eyebrow'
  966. $pcdesc_eyebrow = 'eyebrow'
  967. end
  968. if pirsN > 0 and pirsN < 10000:
  969. $pirsN = 'You are wearing a navel piercing.'
  970. rand_navel = rand(0)
  971. if rand_navel = 0:$pcdesc_navelrandom = 'pierced navel'
  972. $pcdesc_navelwordy = 'pierced navel'
  973. $pcdesc_navel = 'pierced navel'
  974. else
  975. $pirsN = ''
  976. rand_navel = rand(0)
  977. if rand_navel = 0:$pcdesc_navelrandom = 'navel'
  978. $pcdesc_navelwordy = 'navel'
  979. $pcdesc_navel = 'navel'
  980. end
  981. !! Some of these are labial rings, some of them are hood piercings. No good way to tell without an overhaul.
  982. if pirsG > 0 and pirsG < 10000:
  983. $pirspiz = 'You are wearing a pubic piercing.'
  984. rand_genitals = rand(0)
  985. if rand_genitals = 0:$pcdesc_genitalsrandom = 'pierced pussy'
  986. $pcdesc_genitalswordy = 'jewelry-adorned pussy'
  987. $pcdesc_genitals = 'pierced pussy'
  988. else
  989. $pirspiz = ''
  990. rand_genitals = rand(0)
  991. if rand_genitals = 0:$pcdesc_genitalsrandom = 'pussy'
  992. $pcdesc_genitalswordy = 'pussy'
  993. $pcdesc_genitals = 'pussy'
  994. end
  995. !! There were already checks to set the PC lip size to fit between 0 and 4, so I folded them into this check so as not to needlessly check the same variable multiple times. There was also some duplicate logic; it has since been culled.
  996. !! When I got here, the $liptalk strings were all bafflingly identical, but were used interchangeably. I think it was probably something lost in translation. The intent was probably to reference lips without sounding repetitive, so for reasons of backward compatibility only,
  997. !! I have gone ahead and added some variety to each category to help with that. In general, please do not use the $liptalk strings (I will not be documenting them), they are effectively replaced by $pcsdesc_lipsrandom.
  998. if pcs_lip <= 0:
  999. pcs_lip = 0
  1000. rand_lips = rand(0,2)
  1001. if rand_lips = 0:$pcdesc_lipsrandom = 'thin'
  1002. if rand_lips = 1:$pcdesc_lipsrandom = 'narrow'
  1003. if rand_lips = 2:$pcdesc_lipsrandom = 'slender'
  1004. $pcdesc_lips = 'thin'
  1005. $pcdesc_lipswordy = 'thin, scarcely-noticeable'
  1006. $liptalk = 'thin lips'
  1007. $liptalk2 = 'narrow lips'
  1008. $liptalk3 = 'slender lips'
  1009. $lip1 = 'thin'
  1010. elseif pcs_lip = 1:
  1011. !! These are average lips, originally described as normal in the calculations I first came across. I suppose you could theoretically have blistered and sunburnt lips, not soft ones, but, you know, let us worry about that use case sometime later.
  1012. rand_lips = rand(0,1)
  1013. if rand_lips = 0:$pcdesc_lipsrandom = 'kissable'
  1014. if rand_lips = 1:$pcdesc_lipsrandom = 'average'
  1015. $pcdesc_lips = 'average'
  1016. $pcdesc_lipswordy = 'kissable, if average'
  1017. $liptalk = 'kissable lips'
  1018. $liptalk2 = 'kissable lips'
  1019. $liptalk3 = 'kissable lips'
  1020. $lip1 = 'normal'
  1021. elseif pcs_lip = 2:
  1022. rand_lips = rand(0,2)
  1023. if rand_lips = 0:$pcdesc_lipsrandom = 'plump'
  1024. if rand_lips = 1:$pcdesc_lipsrandom = 'full'
  1025. if rand_lips = 2:$pcdesc_lipsrandom = 'inviting'
  1026. $pcdesc_lips = 'plump'
  1027. $pcdesc_lipswordy = 'invitingly full'
  1028. $liptalk = 'plump lips'
  1029. $liptalk2 = 'full lips'
  1030. $liptalk3 = 'inviting lips'
  1031. $lip1 = 'plump'
  1032. elseif pcs_lip = 3:
  1033. rand_lips = rand(0,2)
  1034. if rand_lips = 0:$pcdesc_lipsrandom = 'thick'
  1035. if rand_lips = 1:$pcdesc_lipsrandom = 'big'
  1036. if rand_lips = 2:$pcdesc_lipsrandom = 'pouty'
  1037. $pcdesc_lips = 'pouty'
  1038. $pcdesc_lipswordy = 'big, pouty and full'
  1039. $liptalk = 'pouting lips'
  1040. $liptalk2 = 'big lips'
  1041. $liptalk3 = 'thick lips'
  1042. $lip1 = 'pouting'
  1043. else
  1044. pcs_lip = 4
  1045. rand_lips = rand(0,3)
  1046. if rand_lips = 0:$pcdesc_lipsrandom = 'plump'
  1047. if rand_lips = 1:$pcdesc_lipsrandom = 'pillowy'
  1048. if rand_lips = 2:$pcdesc_lipsrandom = 'plush'
  1049. if rand_lips = 3:$pcdesc_lipsrandom = 'fat'
  1050. $pcdesc_lips = 'pillowy'
  1051. $pcdesc_lipswordy = 'plush, pillowy and inviting'
  1052. $liptalk = 'plush lips'
  1053. $liptalk2 = 'pillowy lips'
  1054. $liptalk3 = 'fat lips'
  1055. $lip1 = 'plump, pillowy'
  1056. end
  1057. !! Lip balm is used OVER makeup, and given the descriptions already provided for what it does to lips, I feel with some certainty it is meant to be lip gloss, not lip BALM. Still, cannot change the old variables...
  1058. !! $pcdesc_lipglossed is used for a past-tense descriptive, present-tense descriptives will use $pcdesc_lipgloss. In most cases, the lip balm descriptors should only add options when looking at random choices, as the additional random options are merely indicative of
  1059. !! a more suggestive lip shape and fullness, not necessarily a different type of gloss. Only shiny is culled past 1, because it is boring. $pcs_lipbalm is left for backwards compatibility.
  1060. if pcs_lipbalm > 0:
  1061. if pcs_lip = 1:
  1062. rand_lipgloss = rand(0,1)
  1063. if rand_lipgloss = 0:$pcdesc_lipglossrandom = 'shiny'
  1064. if rand_lipgloss = 1:$pcdesc_lipglossrandom = 'glossy'
  1065. $pcs_lipbalm = 'shiny'
  1066. $pcdesc_lipgloss = 'shiny'
  1067. $pcdesc_lipglossinsertive = ', shiny'
  1068. $pcdesc_lipglossed = 'glossed'
  1069. $pcdesc_lipglosswordy = 'gloss-slicked'
  1070. $lip = 'You have normal<<$pcdesc_lipglossinsertive>> lips.<<$pirsB>><<$pirsA>>'
  1071. elseif pcs_lip = 2:
  1072. rand_lipgloss = rand(0,2)
  1073. if rand_lipgloss = 0:$pcdesc_lipglossrandom = 'juicy'
  1074. if rand_lipgloss = 1:$pcdesc_lipglossrandom = 'glossy'
  1075. if rand_lipgloss = 2:$pcdesc_lipglossrandom = 'slippery'
  1076. $pcs_lipbalm = 'brilliant and juicy'
  1077. $pcdesc_lipgloss = 'brilliant and juicy'
  1078. $pcdesc_lipglossinsertive = ', brilliant and juicy'
  1079. $pcdesc_lipglossed = 'glossed'
  1080. $pcdesc_lipglosswordy = 'invitingly glossed'
  1081. $lip = 'You have plump<<$pcdesc_lipglossinsertive>> lips. <<$pirsB>> <<$pirsA>>'
  1082. elseif pcs_lip = 3:
  1083. rand_lipgloss = rand(0,4)
  1084. if rand_lipgloss = 0:$pcdesc_lipglossrandom = 'juicy'
  1085. if rand_lipgloss = 1:$pcdesc_lipglossrandom = 'glossy'
  1086. if rand_lipgloss = 2:$pcdesc_lipglossrandom = 'slippery'
  1087. if rand_lipgloss = 3:$pcdesc_lipglossrandom = 'gloss-slicked'
  1088. if rand_lipgloss = 4:$pcdesc_lipglossrandom = 'gloss-stickied'
  1089. $pcs_lipbalm = 'juicy and full'
  1090. $pcdesc_lipgloss = 'juicy and full'
  1091. $pcdesc_lipglossinsertive = ', juicy and full'
  1092. $pcdesc_lipglossed = 'glossed'
  1093. $pcdesc_lipglosswordy = 'wetly-glossed'
  1094. $lip = 'You have big, pouting, <<$pcdesc_lipgloss>> lips. <<$pirsB>> <<$pirsA>>'
  1095. elseif pcs_lip = 4:
  1096. rand_lipgloss = rand(0,6)
  1097. !! I know what you are thinking -- dripping? But believe me; past a certain point it really will. It is far from the least realistic thing we would have in here anyway.
  1098. if rand_lipgloss = 0:$pcdesc_lipglossrandom = 'juicy'
  1099. if rand_lipgloss = 1:$pcdesc_lipglossrandom = 'glossy'
  1100. if rand_lipgloss = 2:$pcdesc_lipglossrandom = 'gloss-slicked'
  1101. if rand_lipgloss = 3:$pcdesc_lipglossrandom = 'gloss-stickied'
  1102. if rand_lipgloss = 4:$pcdesc_lipglossrandom = 'gloss-dripping'
  1103. if rand_lipgloss = 5:$pcdesc_lipglossrandom = 'glisteningly wet'
  1104. if rand_lipgloss = 6:$pcdesc_lipglossrandom = 'slippery'
  1105. $pcs_lipbalm = 'wet and glossy'
  1106. $pcdesc_lipgloss = 'wet and glossy'
  1107. $pcdesc_lipglossinsertive = ', wet and glossy'
  1108. $pcdesc_lipglossed = 'glossed'
  1109. $pcdesc_lipglosswordy = 'suggestively gloss-glazed'
  1110. $lip = 'You have pillowy, <<$pcdesc_lipgloss>>, suggestively full lips. <<$pirsB>> <<$pirsA>>'
  1111. else
  1112. !! Lip size 0
  1113. rand_lipgloss = rand(0)
  1114. if rand_lipgloss = 0:$pcdesc_lipglossrandom = 'shiny'
  1115. $pcs_lipbalm = 'shiny'
  1116. $pcdesc_lipgloss = 'shiny'
  1117. $pcdesc_lipglossinsertive = ', shiny'
  1118. $pcdesc_lipglossed = 'glossed'
  1119. $pcdesc_lipglosswordy = 'gloss-slicked'
  1120. $lip = 'You have thin<<$pcdesc_lipglossinsertive>> lips. <<$pirsB>> <<$pirsA>>'
  1121. end
  1122. else
  1123. !! No gloss
  1124. rand_lipgloss = rand(0)
  1125. if rand_lipgloss = 0:$pcdesc_lipglossrandom = 'soft'
  1126. $pcs_lipbalm = 'soft'
  1127. $pcdesc_lipgloss = 'soft'
  1128. $pcdesc_lipglossinsertive = ''
  1129. $pcdesc_lipglossed = 'softened'
  1130. $pcdesc_lipglosswordy = 'soft'
  1131. $lip = 'You have <<$pcdesc_lipswordy>> lips. <<$pirsB>> <<$pirsA>>'
  1132. end
  1133. !! A pair of ready-made lip strings for writers to use if they are unsure how to construct them themselves. Again, these are not great and should preferably not be relied on, but they are here.
  1134. $pcdesc_fulllips = '<<$pcdesc_lips>><<$pcdesc_lipglossinsertive>> lips'
  1135. $pcdesc_fulllipswordy = '<<$pcdesc_lipglossrandom>>, <<$pcdesc_lipswordy>> lips'
  1136. !! The solarium increases tan value by 10, and the beach increases it by 1 or 3 based on whether or not you use sunblock (counterintuitively, sunblock increases it by 3, not 1 -- I think suntan lotion was meant, which is actually a different thing)
  1137. if pcs_tan > 0:
  1138. if pcs_tan > 0 and pcs_tan <= 5:
  1139. rand_tan = rand(0,2)
  1140. if rand_tan = 0:$pcdesc_tanrandom = 'lightly tanned'
  1141. if rand_tan = 1:$pcdesc_tanrandom = 'barely tanned'
  1142. if rand_tan = 2:$pcdesc_tanrandom = 'scarcely darkened'
  1143. $pcdesc_tan = 'faintly tanned'
  1144. $pcdesc_tanwordy = 'just barely sun-kissed'
  1145. $pcs_tan = 'faintly tanned'
  1146. elseif pcs_tan > 5 and pcs_tan <= 10:
  1147. rand_tan = rand(0,3)
  1148. if rand_tan = 0:$pcdesc_tanrandom = 'tanned'
  1149. if rand_tan = 1:$pcdesc_tanrandom = 'lightly bronzed'
  1150. if rand_tan = 2:$pcdesc_tanrandom = 'sun-kissed'
  1151. if rand_tan = 3:$pcdesc_tanrandom = 'lightly browned'
  1152. $pcdesc_tan = 'tanned'
  1153. $pcdesc_tanwordy = 'gently sun-kissed'
  1154. $pcs_tan = 'tanned'
  1155. elseif pcs_tan > 10 and pcs_tan <= 25:
  1156. rand_tan = rand(0,2)
  1157. if rand_tan = 0:$pcdesc_tanrandom = 'bronzed'
  1158. if rand_tan = 1:$pcdesc_tanrandom = 'browned'
  1159. if rand_tan = 2:$pcdesc_tanrandom = 'light caramel'
  1160. $pcdesc_tan = 'bronzed'
  1161. $pcdesc_tanwordy = 'sun-swept, beach-bunny brown'
  1162. $pcs_tan = 'bronzed'
  1163. elseif pcs_tan > 25 and pcs_tan <= 50:
  1164. rand_tan = rand(0,3)
  1165. if rand_tan = 0:$pcdesc_tanrandom = 'deeply tanned'
  1166. if rand_tan = 1:$pcdesc_tanrandom = 'very dark'
  1167. if rand_tan = 2:$pcdesc_tanrandom = 'richly browned'
  1168. if rand_tan = 3:$pcdesc_tanrandom = 'tawny'
  1169. $pcdesc_tan = 'deeply tanned'
  1170. $pcdesc_tanwordy = 'dark, richly browned'
  1171. $pcs_tan = 'deeply tanned'
  1172. else
  1173. !! This would take some very intentional tanorexia
  1174. rand_tan = rand(0,2)
  1175. if rand_tan = 0:$pcdesc_tanrandom = 'extremely darkly tanned'
  1176. if rand_tan = 1:$pcdesc_tanrandom = 'nearly unnaturally darkened'
  1177. if rand_tan = 2:$pcdesc_tanrandom = 'dark, desert-tanned'
  1178. $pcdesc_tan = 'extremely darkly tanned'
  1179. $pcdesc_tanwordy = 'practically swarthy'
  1180. $pcs_tan = 'extremely darkly tanned'
  1181. end
  1182. else
  1183. rand_tan = rand(0,3)
  1184. if rand_tan = 0:$pcdesc_tanrandom = 'pale'
  1185. if rand_tan = 1:$pcdesc_tanrandom = 'alabaster'
  1186. if rand_tan = 2:$pcdesc_tanrandom = 'porcelain'
  1187. if rand_tan = 3:$pcdesc_tanrandom = 'fair'
  1188. $pcdesc_tan = 'pale'
  1189. $pcdesc_tanwordy = 'pale, alabaster'
  1190. $pcs_tan = 'pale'
  1191. end
  1192. !! Skin1 is only used in the foto location, and can be replaced at a later date. From here on out, do not use it.
  1193. if pcs_skin > 100: pcs_skin = 100
  1194. if pcs_skin < 0: pcs_skin = 0
  1195. if pcs_skin < 20:
  1196. rand_skin = rand(0,3)
  1197. if rand_skin = 0:$pcdesc_skinrandom = 'terrible'
  1198. if rand_skin = 1:$pcdesc_skinrandom = 'awful'
  1199. if rand_skin = 2:$pcdesc_skinrandom = 'greasy'
  1200. if rand_skin = 3:$pcdesc_skinrandom = 'pimple-strewn'
  1201. $pcdesc_skin = 'terrible'
  1202. $pcdesc_skinwordy = 'awful, greasy and pimply'
  1203. $skin = 'Your <<$pcs_tan>> skin is rough and covered with pimples and moles. <<$pirsC>> <<$pirsD>> <<$pirsE>> <<$pirsN>>'
  1204. $skin1 = 'terrible'
  1205. elseif pcs_skin < 40:
  1206. rand_skin = rand(0,3)
  1207. if rand_skin = 0:$pcdesc_skinrandom = 'bad'
  1208. if rand_skin = 1:$pcdesc_skinrandom = 'greasy'
  1209. if rand_skin = 2:$pcdesc_skinrandom = 'rough'
  1210. if rand_skin = 3:$pcdesc_skinrandom = 'unappealing'
  1211. $pcdesc_skin = 'bad'
  1212. $pcdesc_skinwordy = 'poorly-kept, unappealing'
  1213. $skin = 'Your <<$pcs_tan>> skin is rough and has a few pimples. <<$pirsC>> <<$pirsD>> <<$pirsE>> <<$pirsN>>'
  1214. $skin1 = 'bad'
  1215. elseif pcs_skin < 60:
  1216. rand_skin = rand(0,2)
  1217. if rand_skin = 0:$pcdesc_skinrandom = 'average'
  1218. if rand_skin = 1:$pcdesc_skinrandom = 'normal'
  1219. if rand_skin = 2:$pcdesc_skinrandom = 'clear'
  1220. $pcdesc_skin = 'average'
  1221. $pcdesc_skinwordy = 'normal, slightly rough'
  1222. $skin = 'Your <<$pcs_tan>> skin is clear of acne but still slightly rough. <<$pirsC>> <<$pirsD>> <<$pirsE>> <<$pirsN>>'
  1223. $skin1 = 'average'
  1224. elseif pcs_skin < 80:
  1225. rand_skin = rand(0,4)
  1226. if rand_skin = 0:$pcdesc_skinrandom = 'good'
  1227. if rand_skin = 1:$pcdesc_skinrandom = 'nice'
  1228. if rand_skin = 2:$pcdesc_skinrandom = 'smooth'
  1229. if rand_skin = 3:$pcdesc_skinrandom = 'well-kept'
  1230. if rand_skin = 4:$pcdesc_skinrandom = 'great'
  1231. $pcdesc_skin = 'good'
  1232. $pcdesc_skinwordy = 'smooth, well-kept'
  1233. $skin = 'You have <<$pcs_tan>>, smooth and well-groomed skin. <<$pirsC>> <<$pirsD>> <<$pirsE>> <<$pirsN>>'
  1234. $skin1 = 'good'
  1235. else
  1236. rand_skin = rand(0,4)
  1237. if rand_skin = 0:$pcdesc_skinrandom = 'excellent'
  1238. if rand_skin = 1:$pcdesc_skinrandom = 'silken'
  1239. if rand_skin = 2:$pcdesc_skinrandom = 'soft'
  1240. if rand_skin = 3:$pcdesc_skinrandom = 'silky'
  1241. if rand_skin = 4:$pcdesc_skinrandom = 'immaculate'
  1242. $pcdesc_skin = 'excellent'
  1243. $pcdesc_skinwordy = 'immaculate, silky-soft'
  1244. $skin = 'You have <<$pcs_tan>> and very smooth skin which almost feels like silk to the touch. <<$pirsC>> <<$pirsD>> <<$pirsE>> <<$pirsN>>'
  1245. $skin1 = 'excellent'
  1246. end
  1247. if pcs_eyecol = 0:
  1248. rand_eyecol = rand(0,1)
  1249. if rand_eyecol = 0:$pcdesc_eyecolourrandom = 'brown'
  1250. if rand_eyecol = 1:$pcdesc_eyecolourrandom = 'hazel'
  1251. $pcdesc_eyecolour = 'brown'
  1252. $pcdesc_eyecolourwordy = 'warm, hazel'
  1253. $pcs_eyecol = 'brown'
  1254. elseif pcs_eyecol = 1:
  1255. rand_eyecol = rand(0,2)
  1256. if rand_eyecol = 0:$pcdesc_eyecolourrandom = 'pale'
  1257. if rand_eyecol = 1:$pcdesc_eyecolourrandom = 'grey'
  1258. if rand_eyecol = 2:$pcdesc_eyecolourrandom = 'silvery'
  1259. $pcdesc_eyecolour = 'grey'
  1260. $pcdesc_eyecolourwordy = 'pale, silvery-grey'
  1261. $pcs_eyecol = 'grey'
  1262. elseif pcs_eyecol = 2:
  1263. rand_eyecol = rand(0,1)
  1264. if rand_eyecol = 0:$pcdesc_eyecolourrandom = 'green'
  1265. if rand_eyecol = 1:$pcdesc_eyecolourrandom = 'emerald'
  1266. $pcdesc_eyecolour = 'green'
  1267. $pcdesc_eyecolourwordy = 'sparkling green'
  1268. $pcs_eyecol = 'green'
  1269. elseif pcs_eyecol = 3:
  1270. rand_eyecol = rand(0,1)
  1271. if rand_eyecol = 0:$pcdesc_eyecolourrandom = 'blue'
  1272. if rand_eyecol = 1:$pcdesc_eyecolourrandom = 'sapphire'
  1273. $pcdesc_eyecolour = 'blue'
  1274. $pcdesc_eyecolourwordy = 'vibrant, crystal blue'
  1275. $pcs_eyecol = 'blue'
  1276. else
  1277. rand_eyecol = rand(0)
  1278. if rand_eyecol = 0:$pcdesc_eyecolourrandom = 'attractive'
  1279. $pcdesc_eyecolour = 'attractive'
  1280. $pcdesc_eyecolourwordy = 'attractive'
  1281. $pcs_eyecol = 'attractive'
  1282. end
  1283. !! extended lash functionality; pcs_lashes = n are: {2, largest natural size}, {3, with temporary false lashes on or basic 2D lash extensions}, {4, with ornate false lashes on or lavish 4D extensions}, {5, with extremely ornate, 6D-style extensions} - xerya
  1284. !! If players do not have a pcs_naturallashes value, extrapolate one as best as possible from what they currently have.
  1285. if pcs_naturallashes <= 0 and pcs_lashes <= 2 and retroactivenaturallashes <= 0:
  1286. pcs_naturallashes = pcs_lashes
  1287. retroactivenaturallashes = 1
  1288. end
  1289. if pcs_lashes >= 5:
  1290. rand_lashes = rand(0,3)
  1291. if rand_lashes = 0:$pcdesc_lashesrandom = 'long, jewel-dusted'
  1292. if rand_lashes = 1:$pcdesc_lashesrandom = 'incredibly extravagant'
  1293. if rand_lashes = 2:$pcdesc_lashesrandom = 'overwhelmingly indulgent'
  1294. if rand_lashes = 3:$pcdesc_lashesrandom = 'jewel-sparkled, showgirl'
  1295. $pcdesc_lashes = 'long, jewel-dusted'
  1296. $pcdesc_lasheswordy = 'incredibly extravagant, jewel-dusted'
  1297. $pcs_lashes = 'with over-the-top, jewel-dusted eyelash extensions'
  1298. elseif pcs_lashes = 4:
  1299. rand_lashes = rand(0,3)
  1300. if false_lashes >= 1:
  1301. if rand_lashes = 0:$pcdesc_lashesrandom = 'mink-feathered'
  1302. if rand_lashes = 1:$pcdesc_lashesrandom = 'attention-grabbing'
  1303. if rand_lashes = 2:$pcdesc_lashesrandom = 'intoxicatingly seductive false'
  1304. if rand_lashes = 3:$pcdesc_lashesrandom = 'wildly flirtatious false'
  1305. $pcdesc_lashes = 'mink-feathered false'
  1306. $pcs_lashes = 'with fabulous, mink-feathered false lashes'
  1307. $pcdesc_lasheswordy = 'fabulous, mink-feathered false'
  1308. else
  1309. if rand_lashes = 0:$pcdesc_lashesrandom = 'amazingly lengthy'
  1310. if rand_lashes = 1:$pcdesc_lashesrandom = 'show-stealing'
  1311. if rand_lashes = 2:$pcdesc_lashesrandom = 'incredibly lush'
  1312. if rand_lashes = 3:$pcdesc_lashesrandom = 'stunningly dark and full'
  1313. $pcdesc_lashes = 'show-stealing'
  1314. $pcs_lashes = 'with stunningly dark and full lash extensions'
  1315. $pcdesc_lasheswordy = 'stunningly dark and full, show-stealing'
  1316. end
  1317. elseif pcs_lashes = 3:
  1318. rand_lashes = rand(0,3)
  1319. if rand_lashes = 0:$pcdesc_lashesrandom = 'lavish'
  1320. if rand_lashes = 1:$pcdesc_lashesrandom = 'lush, dark'
  1321. if rand_lashes = 2:$pcdesc_lashesrandom = 'seductively-curled'
  1322. if rand_lashes = 3:$pcdesc_lashesrandom = 'flirtatiously lengthy'
  1323. $pcdesc_lashes = 'lavish'
  1324. if false_lashes >= 1:
  1325. $pcs_lashes = 'with lavish, fluttery false lashes'
  1326. $pcdesc_lasheswordy = 'lavish, attention-grabbing false'
  1327. else
  1328. $pcs_lashes = 'with lavishly seductive lash extensions'
  1329. $pcdesc_lasheswordy = 'lavish, seductively dark'
  1330. end
  1331. elseif pcs_lashes = 2:
  1332. rand_lashes = rand(0,3)
  1333. if rand_lashes = 0:$pcdesc_lashesrandom = 'lengthy'
  1334. if rand_lashes = 1:$pcdesc_lashesrandom = 'long'
  1335. if rand_lashes = 2:$pcdesc_lashesrandom = 'fluttery'
  1336. if rand_lashes = 3:$pcdesc_lashesrandom = 'seductive'
  1337. $pcdesc_lashes = 'long'
  1338. $pcdesc_lasheswordy = 'long, fluttery'
  1339. $pcs_lashes = 'with long eyelashes'
  1340. elseif pcs_lashes = 1:
  1341. rand_lashes = rand(0)
  1342. if rand_lashes = 0:$pcdesc_lashesrandom = 'average'
  1343. $pcdesc_lashes = 'average'
  1344. $pcdesc_lasheswordy = 'average'
  1345. $pcs_lashes = 'with average eyelashes'
  1346. else
  1347. pcs_lashes = 0
  1348. rand_lashes = rand(0,2)
  1349. if rand_lashes = 0:$pcdesc_lashesrandom = 'short'
  1350. if rand_lashes = 1:$pcdesc_lashesrandom = 'scarce'
  1351. if rand_lashes = 2:$pcdesc_lashesrandom = 'faint'
  1352. $pcdesc_lashes = 'short'
  1353. $pcdesc_lasheswordy = 'short, barely-noticeable'
  1354. $pcs_lashes = 'with short eyelashes'
  1355. end
  1356. !!!CV edition: from glassvnesh = 5 to glassvnesh = 0
  1357. !! I changed glassvnesh back to 5 for wearing basic glasses. Boys do not make passes at girls who wear glasses.
  1358. !! Most of these descriptive variables are for describing cum, they would not be reliable for much else. They are used in the context of looking through something.
  1359. if glass >= 2:
  1360. rand_vision = rand(0,1)
  1361. if rand_vision = 0:$pcdesc_visionrandom = 'glasses'
  1362. if rand_vision = 1:$pcdesc_visionrandom = 'lenses'
  1363. $pcdesc_vision = 'glasses'
  1364. $pcdesc_visionwordy = 'chic, stylish glasses'
  1365. $glass = ' You wear glasses.'
  1366. glassvnesh = 0
  1367. elseif glass = 1:
  1368. rand_vision = rand(0,3)
  1369. if rand_vision = 0:$pcdesc_visionrandom = 'glasses'
  1370. if rand_vision = 1:$pcdesc_visionrandom = 'lenses'
  1371. if rand_vision = 2:$pcdesc_visionrandom = 'dorky glasses'
  1372. if rand_vision = 3:$pcdesc_visionrandom = 'geeky lenses'
  1373. $pcdesc_vision = 'nerdy glasses'
  1374. $pcdesc_visionwordy = 'cheap, utilitarian glasses'
  1375. $glass = ' You wear silly glasses in a cheap frame.'
  1376. glassvnesh = 10
  1377. else
  1378. glass = 0
  1379. rand_vision = rand(0,1)
  1380. if rand_vision = 0:$pcdesc_visionrandom = 'lashes'
  1381. if rand_vision = 1:$pcdesc_visionrandom = 'eyelashes'
  1382. $pcdesc_vision = 'lashes'
  1383. $pcdesc_visionwordy = '<<$pcdesc_lasheswordy>> lashes'
  1384. $glass = ''
  1385. glassvnesh = 0
  1386. end
  1387. !! Most of these sound really terrible. Would REALLY recommend only using the insertive context, as the less-flowery versions will simply not return anything at all.
  1388. if pcs_eyesize = 0:
  1389. rand_eyesize = rand(0)
  1390. if rand_eyesize = 0:$pcdesc_eyesizerandom = 'tiny'
  1391. $pcdesc_eyesize = 'small'
  1392. $pcdesc_eyesizeinsertive = ''
  1393. $pcdesc_eyesizewordy = 'little'
  1394. $glaza = 'You have little <<$pcs_eyecol>> eyes <<$pcs_lashes>>.<<$glass>>'
  1395. elseif pcs_eyesize = 1:
  1396. rand_eyesize = rand(0)
  1397. if rand_eyesize = 0:$pcdesc_eyesizerandom = 'medium'
  1398. if rand_eyesize = 0:$pcdesc_eyesizerandom = 'average-sized'
  1399. $pcdesc_eyesize = 'medium-sized'
  1400. $pcdesc_eyesizeinsertive = ''
  1401. $pcdesc_eyesizewordy = 'medium-sized'
  1402. $glaza = 'You have medium-sized <<$pcs_eyecol>> eyes <<$pcs_lashes>>.<<$glass>>'
  1403. elseif pcs_eyesize = 2:
  1404. rand_eyesize = rand(0,3)
  1405. if rand_eyesize = 0:$pcdesc_eyesizerandom = 'big'
  1406. if rand_eyesize = 1:$pcdesc_eyesizerandom = 'expressive'
  1407. if rand_eyesize = 2:$pcdesc_eyesizerandom = 'wide'
  1408. if rand_eyesize = 3:$pcdesc_eyesizerandom = 'large'
  1409. $pcdesc_eyesize = 'large'
  1410. $pcdesc_eyesizeinsertive = ' large,'
  1411. $pcdesc_eyesizewordy = 'large, expressive'
  1412. $glaza = 'You have large <<$pcs_eyecol>> eyes <<$pcs_lashes>>.<<$glass>>'
  1413. else
  1414. pcs_eyesize = 3
  1415. rand_eyesize = rand(0,3)
  1416. if rand_eyesize = 0:$pcdesc_eyesizerandom = 'wide'
  1417. if rand_eyesize = 1:$pcdesc_eyesizerandom = 'huge'
  1418. if rand_eyesize = 2:$pcdesc_eyesizerandom = 'doll-like'
  1419. if rand_eyesize = 3:$pcdesc_eyesizerandom = 'incredibly expressive'
  1420. $pcdesc_eyesize = 'huge'
  1421. $pcdesc_eyesizeinsertive = ' big, doll-like'
  1422. $pcdesc_eyesizewordy = 'huge'
  1423. $glaza = 'You have huge <<$pcs_eyecol>> eyes that almost look like they''re out of an anime, <<$pcs_lashes>>.<<$glass>>'
  1424. end
  1425. mopkoef = pcs_makupskl / 5
  1426. if pcs_makeup = 0:
  1427. rand_makeup = rand(0,2)
  1428. if rand_makeup = 0:$pcdesc_makeuprandom = 'makeup-ruined'
  1429. if rand_makeup = 1:$pcdesc_makeuprandom = 'makeup-smeared'
  1430. if rand_makeup = 2:$pcdesc_makeuprandom = 'makeup-trashed'
  1431. $pcdesc_makeup = 'makeup-smeared'
  1432. $pcdesc_makeupwordy = 'clownishly makeup-smeared'
  1433. mopkoef = -5
  1434. $pcs_makeup = '<b><font color="red">Your makeup is smeared all over your face</font></b>'
  1435. elseif pcs_makeup = 1:
  1436. rand_makeup = rand(0,1)
  1437. if rand_makeup = 0:$pcdesc_makeuprandom = 'natural'
  1438. if rand_makeup = 1:$pcdesc_makeuprandom = 'bare'
  1439. $pcdesc_makeup = 'natural'
  1440. $pcdesc_makeupwordy = 'bare, natural'
  1441. mopkoef = 0
  1442. $pcs_makeup = 'You''re not wearing any kind of makeup'
  1443. elseif pcs_makeup = 2:
  1444. rand_makeup = rand(0,1)
  1445. if rand_makeup = 0:$pcdesc_makeuprandom = 'lightly-accented'
  1446. if rand_makeup = 1:$pcdesc_makeuprandom = 'subtly-highlighted'
  1447. $pcdesc_makeup = 'subtly-accented'
  1448. $pcdesc_makeupwordy = 'almost natural, subtly-accented'
  1449. $pcs_makeup = 'Your makeup is light and subtle, with neutral tones to bring out your natural beauty'
  1450. elseif pcs_makeup = 3:
  1451. rand_makeup = rand(0,1)
  1452. if rand_makeup = 0:$pcdesc_makeuprandom = 'colourfully done-up'
  1453. if rand_makeup = 1:$pcdesc_makeuprandom = 'vibrantly done-up'
  1454. $pcdesc_makeup = 'vibrantly done-up'
  1455. $pcdesc_makeupwordy = 'colourful, tastefully done-up'
  1456. $pcs_makeup = 'Your makeup has some mildly vibrant tones, covering your minor imperfections and enhancing your best features'
  1457. elseif pcs_makeup = 4:
  1458. rand_makeup = rand(0,3)
  1459. if rand_makeup = 0:$pcdesc_makeuprandom = 'painted-on'
  1460. if rand_makeup = 1:$pcdesc_makeuprandom = 'makeup-caked'
  1461. if rand_makeup = 2:$pcdesc_makeuprandom = 'dolled-up'
  1462. if rand_makeup = 3:$pcdesc_makeuprandom = 'sultry, dramatically done-up'
  1463. $pcdesc_makeup = 'dolled-up'
  1464. $pcdesc_makeupwordy = 'heavily dolled-up and painted'
  1465. $pcs_makeup = 'Your makeup is thick enough to cover most imperfections, with rich shades drawing attention to your eyes and lips'
  1466. elseif pcs_makeup = 5:
  1467. rand_makeup = rand(0,3)
  1468. if rand_makeup = 0:$pcdesc_makeuprandom = 'painted-on'
  1469. if rand_makeup = 1:$pcdesc_makeuprandom = 'makeup-caked'
  1470. if rand_makeup = 2:$pcdesc_makeuprandom = 'dolled-up'
  1471. if rand_makeup = 3:$pcdesc_makeuprandom = 'sultry, dramatically done-up'
  1472. $pcdesc_makeup = 'dolled-up'
  1473. $pcdesc_makeupwordy = 'heavily dolled-up and painted'
  1474. $pcs_makeup = 'Your makeup is professional grade, covering up any and all imperfections and flawlessly complimenting the natural hues of your eyes, face, and hair.'
  1475. mopkoef = 30
  1476. end
  1477. if pcs_leghair <= 0:
  1478. rand_legs = rand(0,2)
  1479. if rand_legs = 0:$pcdesc_legsrandom = 'smooth'
  1480. if rand_legs = 0:$pcdesc_legsrandom = 'silky'
  1481. if rand_legs = 0:$pcdesc_legsrandom = 'soft'
  1482. $pcdesc_legs = 'smooth'
  1483. $pcdesc_legswordy = 'soft and silky-smooth'
  1484. legkoef = 0
  1485. $pcs_leghair = 'You have smooth legs.'
  1486. elseif pcs_leghair <= 3:
  1487. rand_legs = rand(0,1)
  1488. if rand_legs = 0:$pcdesc_legsrandom = 'slightly scratchy'
  1489. if rand_legs = 1:$pcdesc_legsrandom = 'faintly stubbly'
  1490. $pcdesc_legs = 'faintly stubbly'
  1491. $pcdesc_legswordy = 'slightly rough, invisibly-stubbled'
  1492. legkoef = 3
  1493. $pcs_leghair = 'You can''t see any hair, but your legs feel rough to the touch.'
  1494. elseif pcs_leghair <= 6:
  1495. rand_legs = rand(0,1)
  1496. if rand_legs = 0:$pcdesc_legsrandom = 'somewhat hairy'
  1497. if rand_legs = 1:$pcdesc_legsrandom = 'lightly-furred'
  1498. $pcdesc_legs = 'slightly hairy'
  1499. $pcdesc_legswordy = 'lightly-furred, soft-haired'
  1500. legkoef = 6
  1501. $pcs_leghair = 'You have light and just barely visible hair on your legs.'
  1502. else
  1503. rand_legs = rand(0,2)
  1504. if rand_legs = 0:$pcdesc_legsrandom = 'hairy'
  1505. if rand_legs = 1:$pcdesc_legsrandom = 'unshaven'
  1506. if rand_legs = 2:$pcdesc_legsrandom = 'ungroomed'
  1507. $pcdesc_legs = 'hairy'
  1508. $pcdesc_legswordy = 'hairy, unshaven'
  1509. legkoef = 9
  1510. $pcs_leghair = 'Your legs are hairy.'
  1511. end
  1512. if clit_size < 20:
  1513. rand_clit = rand(0,1)
  1514. if rand_clit = 0:$pcdesc_clitrandom = 'small'
  1515. if rand_clit = 1:$pcdesc_clitrandom = 'tiny'
  1516. $pcdesc_clit = 'small'
  1517. $pcdesc_clitwordy = 'small, oft-hidden'
  1518. $clitsize = 'You consider your <a href="exec:view''images/pc/body/clit/clit1.jpg''">clitoris</a> to be of an average size.'
  1519. elseif clit_size >= 20 and clit_size < 40:
  1520. rand_clit = rand(0,2)
  1521. if rand_clit = 0:$pcdesc_clitrandom = 'large'
  1522. if rand_clit = 1:$pcdesc_clitrandom = 'big'
  1523. if rand_clit = 2:$pcdesc_clitrandom = 'engorged'
  1524. $pcdesc_clit = 'big'
  1525. $pcdesc_clitwordy = 'big, easily-found'
  1526. $clitsize = 'You feel your <a href="exec:view''images/pc/body/clit/clit2.jpg''">clitoris</a> is somewhat on the large side.'
  1527. elseif clit_size >= 40 and clit_size < 60:
  1528. rand_clit = rand(0,2)
  1529. if rand_clit = 0:$pcdesc_clitrandom = 'meaty'
  1530. if rand_clit = 1:$pcdesc_clitrandom = 'thick'
  1531. if rand_clit = 2:$pcdesc_clitrandom = 'swollen'
  1532. $pcdesc_clit = 'meaty'
  1533. $pcdesc_clitwordy = 'thick, meaty'
  1534. $clitsize = 'Your <a href="exec:view''images/pc/body/clit/clit3.jpg''">clit</a> is quite large.'
  1535. elseif clit_size >= 60 and clit_size < 80:
  1536. rand_clit = rand(0,1)
  1537. if rand_clit = 0:$pcdesc_clitrandom = 'oversized'
  1538. if rand_clit = 1:$pcdesc_clitrandom = 'huge'
  1539. $pcdesc_clit = 'oversized'
  1540. $pcdesc_clitwordy = 'big, practically phallic'
  1541. $clitsize = 'You have a big <a href="exec:view''images/pc/body/clit/clit4.jpg''">clit</a> that resembles a penis.'
  1542. else
  1543. !! If greater or equal to 80
  1544. rand_clit = rand(0,2)
  1545. if rand_clit = 0:$pcdesc_clitrandom = 'huge'
  1546. if rand_clit = 1:$pcdesc_clitrandom = 'cock-like'
  1547. if rand_clit = 2:$pcdesc_clitrandom = 'massive'
  1548. $pcdesc_clit = 'phallic'
  1549. $pcdesc_clitwordy = 'enormous, phallic'
  1550. $clitsize = 'Your <a href="exec:view''images/pc/body/clit/clit5.jpg''">clit</a> is so large it can be mistaken for a penis.'
  1551. end
  1552. if lashair = 1:
  1553. rand_pubes = rand(0,3)
  1554. if rand_pubes = 0:$pcdesc_pubesrandom = 'silky-smooth'
  1555. if rand_pubes = 1:$pcdesc_pubesrandom = 'hairless'
  1556. if rand_pubes = 2:$pcdesc_pubesrandom = 'smooth'
  1557. if rand_pubes = 3:$pcdesc_pubesrandom = 'bald'
  1558. $pcdesc_pubes = 'hairless'
  1559. $pcdesc_pubeswordy = 'eternally silky-smooth'
  1560. $pcs_pubes = 'You have a smooth, <a href="exec:view''images/pc/body/pussy/pussy.jpg''">bald pussy</a>. <<$pirspiz>><br><<$clitsize>>'
  1561. end
  1562. if lashair = 0:
  1563. if pcs_pubes <= 3:
  1564. lobkoef = 3
  1565. $pcs_pubes = 'You have a smoothly <a href="exec:view''images/pc/body/pussy/pussy.jpg''">shaved pussy</a>. <<$pirspiz>><br><<$clitsize>>'
  1566. rand_pubes = rand(0,3)
  1567. if rand_pubes = 0:$pcdesc_pubesrandom = 'silky'
  1568. if rand_pubes = 1:$pcdesc_pubesrandom = 'hairless'
  1569. if rand_pubes = 2:$pcdesc_pubesrandom = 'smooth-shaven'
  1570. if rand_pubes = 3:$pcdesc_pubesrandom = 'freshly-shaven'
  1571. $pcdesc_pubes = 'smooth-shaven'
  1572. $pcdesc_pubeswordy = 'silky, freshly-shaven'
  1573. elseif pcs_pubes <= 10:
  1574. lobkoef = 0
  1575. $pcs_pubes = 'You have stubble growing around your <a href="exec:view''images/pc/body/pussy/stpussy.jpg''">pussy</a>. <<$pirspiz>><br><<$clitsize>>'
  1576. rand_pubes = rand(0,2)
  1577. if rand_pubes = 0:$pcdesc_pubesrandom = 'stubbly'
  1578. if rand_pubes = 1:$pcdesc_pubesrandom = 'scratchy'
  1579. if rand_pubes = 2:$pcdesc_pubesrandom = 'roughly-stubbled'
  1580. $pcdesc_pubes = 'stubbly'
  1581. $pcdesc_pubeswordy = 'scratchy, roughly-stubbled'
  1582. elseif pcs_pubes <= 15:
  1583. lobkoef = 0
  1584. $pcs_pubes = 'You have a tidy patch of hair growing above your '+iif(pubestyle >= 2 and pubestyle <=7,'<a href="exec:view''<<$pubeimage>>''">pussy</a>','<a href="exec:view''images/pc/body/pussy/3.jpg''">pussy</a>')+'. <<$pirspiz>><br><<$clitsize>>'
  1585. rand_pubes = rand(0,2)
  1586. if rand_pubes = 0:$pcdesc_pubesrandom = 'almost bare'
  1587. if rand_pubes = 1:$pcdesc_pubesrandom = 'barely-haired'
  1588. if rand_pubes = 3:$pcdesc_pubesrandom = 'well-kept'
  1589. $pcdesc_pubes = 'stubbly'
  1590. $pcdesc_pubeswordy = 'scratchy, roughly-stubbled'
  1591. elseif pcs_pubes <= 20:
  1592. lobkoef = 0
  1593. $pcs_pubes = 'You have neatly trimmed section of hair around your '+iif(pubestyle = 8,'<a href="exec:view''<<$pubeimage>>''">pussy</a>','<a href="exec:view''images/pc/body/pussy/spussy.jpg''">pussy</a>')+'. <<$pirspiz>><br><<$clitsize>>'
  1594. rand_pubes = rand(0,3)
  1595. if rand_pubes = 0:$pcdesc_pubesrandom = 'wispy-haired'
  1596. if rand_pubes = 1:$pcdesc_pubesrandom = 'lightly-furred'
  1597. if rand_pubes = 2:$pcdesc_pubesrandom = 'trimmed'
  1598. if rand_pubes = 3:$pcdesc_pubesrandom = 'mostly well-kept'
  1599. $pcdesc_pubes = 'neatly-trimmed'
  1600. $pcdesc_pubeswordy = 'trimmed, well-kept'
  1601. elseif pcs_pubes <= 25:
  1602. lobkoef = 0
  1603. $pcs_pubes = 'You have a bushy but well-maintained mat of <a href="exec:view''images/pc/body/pussy/hpussy.jpg''">pubic hair</a>. <<$pirspiz>><br><<$clitsize>>'
  1604. rand_pubes = rand(0,2)
  1605. if rand_pubes = 0:$pcdesc_pubesrandom = 'mildly-furred'
  1606. if rand_pubes = 1:$pcdesc_pubesrandom = 'slightly-bushy'
  1607. if rand_pubes = 2:$pcdesc_pubesrandom = 'well-maintained'
  1608. $pcdesc_pubes = 'bushy'
  1609. $pcdesc_pubeswordy = 'bushy, thick'
  1610. elseif pcs_pubes <= 30:
  1611. lobkoef = 0
  1612. $pcs_pubes = 'You have a bushy but well-maintained mat of <a href="exec:view''images/pc/body/pussy/shave/s_bush1.jpg''">pubic hair</a>. <<$pirspiz>><br><<$clitsize>>'
  1613. rand_pubes = rand(0,2)
  1614. if rand_pubes = 0:$pcdesc_pubesrandom = 'furred'
  1615. if rand_pubes = 1:$pcdesc_pubesrandom = 'bushy'
  1616. if rand_pubes = 2:$pcdesc_pubesrandom = 'partially-maintained'
  1617. $pcdesc_pubes = 'bushy'
  1618. $pcdesc_pubeswordy = 'bushy, thick'
  1619. elseif pcs_pubes >= 31:
  1620. lobkoef = 0
  1621. $pcs_pubes = 'You have a wild and unkempt jungle of <a href="exec:view''images/pc/body/pussy/hrypussy.jpg''">pubic hair</a>. <<$pirspiz>><br><<$clitsize>>'
  1622. rand_pubes = rand(0,2)
  1623. if rand_pubes = 0:$pcdesc_pubesrandom = 'thickly-furred'
  1624. if rand_pubes = 1:$pcdesc_pubesrandom = 'very hairy'
  1625. if rand_pubes = 2:$pcdesc_pubesrandom = 'ill-maintained'
  1626. $pcdesc_pubes = 'hairy'
  1627. $pcdesc_pubeswordy = 'hairy, wild-maned'
  1628. end
  1629. end
  1630. if pcs_nips < 20:
  1631. $nipplesize = 'You have average <a href="exec:view''images/pc/body/nipples/nipples1.jpg''">nipples</a>.'
  1632. rand_nipples = rand(0,2)
  1633. if rand_nipples = 0:$pcdesc_nipplesrandom = 'small'
  1634. if rand_nipples = 1:$pcdesc_nipplesrandom = 'tiny'
  1635. if rand_nipples = 2:$pcdesc_nipplesrandom = 'little'
  1636. $pcdesc_nipples = 'small'
  1637. $pcdesc_nippleswordy = 'small, tiny'
  1638. elseif pcs_nips >= 20 and pcs_nips < 40:
  1639. $nipplesize = 'Your <a href="exec:view''images/pc/body/nipples/nipples2.jpg''">nipples</a> are slightly on the large side.'
  1640. rand_nipples = rand(0,1)
  1641. if rand_nipples = 0:$pcdesc_nipplesrandom = 'slightly large'
  1642. if rand_nipples = 1:$pcdesc_nipplesrandom = 'decently-sized'
  1643. $pcdesc_nipples = 'slightly large'
  1644. $pcdesc_nippleswordy = 'slightly large'
  1645. elseif pcs_nips >= 40 and pcs_nips < 60:
  1646. $nipplesize = 'You have large, puffy <a href="exec:view''images/pc/body/nipples/nipples3.jpg''">nipples</a>.'
  1647. rand_nipples = rand(0,2)
  1648. if rand_nipples = 0:$pcdesc_nipplesrandom = 'puffy'
  1649. if rand_nipples = 1:$pcdesc_nipplesrandom = 'swollen'
  1650. if rand_nipples = 2:$pcdesc_nipplesrandom = 'large'
  1651. $pcdesc_nipples = 'puffy'
  1652. $pcdesc_nippleswordy = 'large, puffy'
  1653. elseif pcs_nips >= 60 and pcs_nips < 80:
  1654. $nipplesize = 'Your <a href="exec:view''images/pc/body/nipples/nipples4.jpg''">nipples</a> are the size of radio knobs.'
  1655. rand_nipples = rand(0,1)
  1656. if rand_nipples = 0:$pcdesc_nipplesrandom = 'big'
  1657. if rand_nipples = 1:$pcdesc_nipplesrandom = 'thick'
  1658. $pcdesc_nipples = 'big'
  1659. $pcdesc_nippleswordy = 'big, thick'
  1660. else
  1661. !! If greater or equal to 80
  1662. $nipplesize = 'You have huge <a href="exec:view''images/pc/body/nipples/nipples5.jpg''">nipples</a>.'
  1663. rand_nipples = rand(0,3)
  1664. if rand_nipples = 0:$pcdesc_nipplesrandom = 'huge'
  1665. if rand_nipples = 1:$pcdesc_nipplesrandom = 'unmistakably big'
  1666. if rand_nipples = 2:$pcdesc_nipplesrandom = 'meaty'
  1667. if rand_nipples = 3:$pcdesc_nipplesrandom = 'enormous'
  1668. $pcdesc_nipples = 'meaty'
  1669. $pcdesc_nippleswordy = 'huge, meaty'
  1670. end
  1671. If dounspell = 1:
  1672. bodytipe = pcs_hips - pcs_waist
  1673. if bodytipe < 20: bodykoef = 0
  1674. if bodytipe >= 20 and bodytipe < 25: bodykoef = 2
  1675. if bodytipe >= 25 and bodytipe < 30: bodykoef = 4
  1676. if bodytipe >= 30 and bodytipe < 35: bodykoef = 8
  1677. if bodytipe >= 35: bodykoef = 4
  1678. end
  1679. if pcs_tan > 0:tanKoef = 1
  1680. if pcs_tan = 0:tanKoef = 0
  1681. !! buzzcut penalty to pcs_apprnc
  1682. if pcs_hairlng < 10:
  1683. hairkoef = 10
  1684. else
  1685. hairkoef = 0
  1686. end
  1687. if pcs_sweat < 22:
  1688. sweatKoef = 0
  1689. elseif pcs_sweat < 38:
  1690. sweatKoef = (pcs_sweat - 10) / 4
  1691. elseif pcs_sweat < 54:
  1692. sweatKoef = (pcs_sweat - 10) / 2
  1693. else
  1694. sweatKoef = 3 * (pcs_sweat - 10) / 4
  1695. end
  1696. if pcs_lipbalm > 0:
  1697. lipbalmKoef = 5
  1698. else
  1699. lipbalmKoef = 0
  1700. end
  1701. !!This is to force a base update if teeth changed since that is immediate
  1702. if zublast ! pcs_teeth:
  1703. gs 'body_shape', 'basebeautycalc', 1
  1704. zublast = pcs_teeth
  1705. end
  1706. !!Clothing appearance factors to appearance; bonusZ = coat (if cold); PXClo variables, see "clothing"
  1707. if $clothingworntype = 'nude':
  1708. CloAdjustedBeauty = pcs_apprncbase
  1709. else
  1710. CloAdjustedBeauty = bonusZ + pcs_apprncbase * (PXCloThinness + PXCloTopCut + PXCloBottomShortness) * PCloQuality / 5000 + PShoQuality
  1711. end
  1712. if $clothingworntype = 'exercise': CloAdjustedBeauty = CloAdjustedBeauty * 2 / 3
  1713. !!bonuses for certain underwears
  1714. if $pantyworntype = 'boutique':
  1715. panty_beautybounus = 4
  1716. elseif $pantyworntype = 'fashionista':
  1717. panty_beautybounus = 2
  1718. end
  1719. if $braworntype = 'boutique':
  1720. bra_beautybounus = 4
  1721. elseif $braworntype = 'fashionista':
  1722. bra_beautybounus = 2
  1723. end
  1724. !!Appearance factors; hairkoef = very short hair / mopkoef = makeup bonus / legkoef = shaved legs / CloAdjustedBeauty = clothes / pcs_hairbsh = Hair brushed / lipbalmKoef = lip balm / pcs_breath = freash breath / sweatKoef = pcs_sweat / glassvnesh = glasses / dyevmod = hair dye fading
  1725. !!Moved to base calculation in "body_shape"; bimbobeauty = Bimbo bonus; pcs_lip = lip size; skin = skin condition; pcs_lashes = eyelashes; pcs_eyesize = eyes; bodykoef = hips:waist ratio; pcs_teeth = missing teeth; vidagebonus = youth
  1726. !!Removed as primary appearance factors; will be eventually used in an NPC preference system instead; tanKoef = suntan
  1727. pcs_apprnc = pcs_apprncbase + CloAdjustedBeauty + mopkoef + (pcs_hairbsh * 10) + lipbalmKoef + (pcs_breath * 5) - sweatKoef - glassvnesh - dyevmod - hairkoef - legkoef + panty_beautybounus + bra_beautybounus
  1728. if pcs_apprnc >= 200: pcs_apprnc = 200
  1729. pcs_apprnc = pcs_apprnc + supnatvnesh
  1730. if pcs_apprnc < 0: pcs_apprnc = 0
  1731. !!This sets the "hotness catagory" varibale for use in checks
  1732. if pcs_apprnc <= 200:
  1733. hotcat = pcs_apprnc / 20
  1734. else
  1735. hotcat = 11
  1736. end
  1737. killvar'panty_beautybounus'
  1738. killvar'bra_beautybounus'
  1739. if StrongNarkota <= 0:
  1740. if SNarkTimes >= 3 and SLomka = 0:SLomka = 1
  1741. if Gerpes >= 3 or Sifilis >= 21 or Triper > 2:pcs_apprnc = -10
  1742. end
  1743. if amphCount > 3 and amphHigh <= 0:
  1744. addictChance = rand(1,10)
  1745. if addictChance > 8:
  1746. amphWithdrawl = 2
  1747. end
  1748. end
  1749. if StrongNarkota > 0:
  1750. if SLomka > 0:SLomka = 0
  1751. pcs_mood = 100
  1752. end
  1753. if pcs_apprnc = -10:
  1754. $pcs_apprnc = 'Your looks are even worse than terrible. It''s god-awful. No one wants to see or talk to you and people avoid you at any cost.'
  1755. elseif pcs_apprnc < 20:
  1756. $pcs_apprnc = 'Your looks are terrible. People try to avoid looking and talking to you.'
  1757. elseif pcs_apprnc < 60:
  1758. $pcs_apprnc = 'You''re a wallflower. Hardly anyone notices you.'
  1759. elseif pcs_apprnc < 120:
  1760. $pcs_apprnc = 'You have good looks. Men and women check you out when they think you aren''t looking.'
  1761. elseif pcs_apprnc < 160:
  1762. $pcs_apprnc = 'You''re unquestionably gorgeous. Men constantly get caught staring by you and their girlfriends.'
  1763. elseif pcs_apprnc < 200:
  1764. $pcs_apprnc = 'You have a simply stunning appearance. Other girls are a bit jealous and guys constantly check you out.'
  1765. else
  1766. $pcs_apprnc = 'Your appearance is divine! No one is able to take his or her eyes off of you.'
  1767. end
  1768. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  1769. !!!!!!!!BODY
  1770. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  1771. if dounspell = 1:
  1772. salocatnow = (pcs_hips / 10) - 5
  1773. if bdsetlock = 0:
  1774. if strenbuf >= 70:
  1775. bodset = 2
  1776. elseif strenbuf <= 40:
  1777. bodset = 0
  1778. else
  1779. bodset = 1
  1780. end
  1781. else
  1782. bodset = fixbodset
  1783. end
  1784. end
  1785. if salocatnow <= 7:
  1786. $body = $bodimgsets[((bodset * 10) + salocatnow)]
  1787. else
  1788. $body = $bodimgsets[((bodset * 10) + 7)]
  1789. end
  1790. !!Since "musle" is used all over the place
  1791. musle = strenbuf
  1792. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  1793. --- body ---------------------------------