1
0

clothing_descriptions.qsrc 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. # clothing_descriptions
  2. !Builds a dynamic clothing description based on the clothes attributes
  3. $description = ''
  4. if CloDress = 1:
  5. if CloQuality = 1:
  6. $description = 'This crappy quality dress'
  7. elseif CloQuality = 2:
  8. $description = 'This very low quality dress'
  9. elseif CloQuality = 3:
  10. $description = 'This low quality dress'
  11. elseif CloQuality = 4:
  12. $description = 'This average quality dress'
  13. elseif CloQuality = 5:
  14. $description = 'This reasonable quality dress'
  15. elseif CloQuality = 6:
  16. $description = 'This good quality dress'
  17. elseif CloQuality = 7:
  18. $description = 'This is an outstanding quality dress'
  19. end
  20. else
  21. if CloQuality = 1:
  22. $description = 'This crappy quality outfit'
  23. elseif CloQuality = 2:
  24. $description = 'This very low quality outfit'
  25. elseif CloQuality = 3:
  26. $description = 'This low quality outfit'
  27. elseif CloQuality = 4:
  28. $description = 'This average quality outfit'
  29. elseif CloQuality = 5:
  30. $description = 'This reasonable quality outfit'
  31. elseif CloQuality = 6:
  32. $description = 'This good quality outfit'
  33. elseif CloQuality = 7:
  34. $description = 'This is an outstanding quality outfit'
  35. end
  36. end
  37. if CloThinness = 1:
  38. $description += ', which obscures your figure'
  39. elseif CloThinness = 2:
  40. $description += ', which somewhat obscures your figure'
  41. elseif CloThinness = 3:
  42. $description += ', which somewhat shows your figure'
  43. elseif CloThinness = 4:
  44. $description += ', which shows your figure well'
  45. elseif CloThinness = 5:
  46. $description += ', which shows every detail of your figure'
  47. elseif CloThinness = 6:
  48. $description += ', which intentionally reveals your intimate areas'
  49. end
  50. if CloBra = 2:
  51. $description += ', the top leaves your breasts completely exposed'
  52. elseif CloBra = 1:
  53. $description += ', the top is essentially a bra and replaces any you might be wearing'
  54. elseif CloTopCut > 0:
  55. if CloTopCut = 1:
  56. $description += ', includes a modest cut top'
  57. elseif CloTopCut = 2:
  58. $description += ', includes a fairly regular cut top'
  59. elseif CloTopCut = 3:
  60. $description += ', includes a daring cut top'
  61. elseif CloTopCut = 4:
  62. $description += ', includes a very revealing cut top'
  63. end
  64. if tits < 1 and CloTopCut = 1:
  65. $description += ' that would fit well over your flat chest'
  66. elseif tits < 1 and CloTopCut = 2:
  67. $description += ' that would hang awkwardly around flat chest'
  68. elseif tits < 1 and CloTopCut = 3:
  69. $description += ' that would hang very awkwardly around flat chest'
  70. elseif tits < 1 and CloTopCut = 4:
  71. $description += ' that would hang extremely loosely over your flat chest'
  72. elseif tits < 1:
  73. $description += ' that would hang loosely around your flat chest'
  74. elseif tits < 2 and CloTopCut = 1:
  75. $description += ' that would fit well over your tiny breasts'
  76. elseif tits < 2 and CloTopCut = 2:
  77. $description += ' that would emphasize your lack of cleavage'
  78. elseif tits < 2 and CloTopCut = 3:
  79. $description += ' that would hang loosely over your tiny breasts'
  80. elseif tits < 2 and CloTopCut = 4:
  81. $description += ' that would drape breezily over your tiny breasts'
  82. elseif tits < 2:
  83. $description += ' that would hang loosely around your tiny breasts'
  84. elseif tits < 3 and CloTopCut = 1:
  85. $description += ' that would fit well over your small breasts'
  86. elseif tits < 3 and CloTopCut = 2:
  87. $description += ' that would slightly emphasize your small breasts'
  88. elseif tits < 3 and CloTopCut = 3:
  89. $description += ' that would emphasize your small breasts'
  90. elseif tits < 3 and CloTopCut = 4:
  91. $description += ' that would greatly emphasize your small breasts'
  92. elseif tits < 3:
  93. $description += ' that would hang loosely over your small breasts'
  94. elseif tits < 4 and CloTopCut = 1:
  95. $description += ' that would fit well around your shapely breasts'
  96. elseif tits < 4 and CloTopCut = 2:
  97. $description += ' that would help emphasize your shapely breasts'
  98. elseif tits < 4 and CloTopCut = 3:
  99. $description += ' that would show off your shapely breasts'
  100. elseif tits < 4 and CloTopCut = 4:
  101. $description += ' that would really show off your shapely breasts'
  102. elseif tits < 4:
  103. $description += ' that would fit well around your shapely breasts'
  104. elseif tits < 6 and CloTopCut = 1:
  105. $description += ' that would comfortably wrap around your large breasts'
  106. elseif tits < 6 and CloTopCut = 2:
  107. $description += ' that would help emphasize your large breasts'
  108. elseif tits < 6 and CloTopCut = 3:
  109. $description += ' that would show off your large breasts'
  110. elseif tits < 6 and CloTopCut = 4:
  111. $description += ' that would attract a lot of attention to your large breasts'
  112. elseif tits < 6:
  113. $description += ' that would comfortably wrap around your large breasts'
  114. elseif tits < 8 and CloTopCut = 1:
  115. $description += ' that your ample bosom would strain against'
  116. elseif tits < 8 and CloTopCut = 2:
  117. $description += ' that would emphasize the cleavage of your ample bosom'
  118. elseif tits < 8 and CloTopCut = 3:
  119. $description += ' that would emphasize the size your exceptionally large breasts'
  120. elseif tits < 8 and CloTopCut = 4:
  121. $description += ' that would draw everyone''s eyes to your exceptionally large breasts'
  122. elseif tits < 8:
  123. $description += ' that would tightly strain to contain your ample bosom'
  124. elseif CloTopCut = 1:
  125. $description += ' that would struggle to contain your huge breasts'
  126. elseif CloTopCut = 2:
  127. $description += ' that would emphasize your enormous cleavage'
  128. elseif CloTopCut = 3:
  129. $description += ' that your huge breasts would spill out of'
  130. elseif CloTopCut = 4:
  131. $description += ' that might fail to contain your huge breasts'
  132. else
  133. $description += ' that would struggle to contain your huge breasts'
  134. end
  135. end
  136. if CloBra ! 2:
  137. if CloCoverTop = 1:
  138. $description += ' If worn without a bra your breasts can just about be seen in the right light.'
  139. elseif BraCover = 2:
  140. $description += ' If worn without a bra your breasts are partly visible.'
  141. elseif BraCover = 3:
  142. $description += ' If worn without a bra your breasts are easily visible.'
  143. elseif BraCover = 4:
  144. $description += ' If worn without a bra your breasts are not covered at all.'
  145. end
  146. end
  147. if CloDress = 1:
  148. if CloSkirtShortness = 1:
  149. $description += ' and a floor-length hemline.'
  150. elseif CloSkirtShortness = 2:
  151. $description += ' and a knee-length hemline.'
  152. elseif CloSkirtShortness = 3:
  153. $description += ' and a fairly standard hemline.'
  154. elseif CloSkirtShortness = 4:
  155. $description += ' and a rather short hemline.'
  156. elseif CloSkirtShortness = 5:
  157. $description += ' and a hemline that barely reaches past your groin.'
  158. elseif CloSkirtShortness = 6:
  159. $description += ' and a hemline not even long enough to hide your privates.'
  160. end
  161. elseif CloPanties = 1:
  162. $description += ' the bottom of which is so skimpy it replaces your panties.'
  163. elseif CloPantsShortness > 0:
  164. if CloPantsShortness = 1:
  165. $description += ' and long pants.'
  166. elseif CloPantsShortness = 2:
  167. $description += ' and calf-length pants.'
  168. elseif CloPantsShortness = 3:
  169. $description += ' and knee-length shorts.'
  170. elseif CloPantsShortness = 4:
  171. $description += ' and thigh-length shorts.'
  172. elseif CloPantsShortness = 5:
  173. $description += ' and shorts that don''t go past your crotch.'
  174. elseif CloPantsShortness = 6:
  175. $description += ' and shorts so short, that they reveal your panties.'
  176. end
  177. elseif CloSkirtShortness > 0:
  178. if CloSkirtShortness = 1:
  179. $description += ' and a floor-length skirt.'
  180. elseif CloSkirtShortness = 2:
  181. $description += ' and a knee-length skirt.'
  182. elseif CloSkirtShortness = 3:
  183. $description += ' and an above knee length skirt.'
  184. elseif CloSkirtShortness = 4:
  185. $description += ' and a rather short skirt.'
  186. elseif CloSkirtShortness = 5:
  187. $description += ' and a miniskirt that barely reaches past your groin.'
  188. elseif CloSkirtShortness = 6:
  189. $description += ' and a microskirt not even long enough to hide your privates.'
  190. end
  191. end
  192. if CloCoverFront = 1:
  193. if CloCoverBack = 1:
  194. $description += ' If worn without underwear your pussy and butt can just about be seen in the right light.'
  195. elseif PanCoverBack = 2:
  196. $description += ' If worn without underwear your pussy can just about be seen in the right light and your butt is partly visible.'
  197. elseif PanCoverBack = 3:
  198. $description += ' If worn without underwear your pussy can just about be seen in the right light and your butt is clearly visible.'
  199. elseif PanCoverBack = 4:
  200. $description += ' If worn without underwear your pussy can just about be seen in the right light and your butt is not covered at all.'
  201. end
  202. elseif CloCoverFront = 2:
  203. if CloCoverBack = 1:
  204. $description += ' If worn without underwear your pussy is partly visible and your butt can just about be seen in the right light.'
  205. elseif PanCoverBack = 2:
  206. $description += ' If worn without underwear your pussy and butt are partly visible.'
  207. elseif PanCoverBack = 3:
  208. $description += ' If worn without underwear your pussy is partly visible and your butt is clearly visible.'
  209. elseif PanCoverBack = 4:
  210. $description += ' If worn without underwear your pussy is partly visible and your butt is not covered at all.'
  211. end
  212. elseif CloCoverFront = 3:
  213. if CloCoverBack = 1:
  214. $description += ' If worn without underwear your pussy is clearly visible and your butt can just about be seen in the right light.'
  215. elseif PanCoverBack = 2:
  216. $description += ' If worn without underwear your pussy is clearly visible and your butt is partly visible.'
  217. elseif PanCoverBack = 3:
  218. $description += ' If worn without underwear your pussy and your butt are clearly visible.'
  219. elseif PanCoverBack = 4:
  220. $description += ' If worn without underwear your pussy is clearly visible and your butt is not covered at all.'
  221. end
  222. elseif CloCoverFront = 4:
  223. if CloCoverBack = 1:
  224. $description += ' If worn without underwear your pussy is not covered at all and your butt can just about be seen in the right light.'
  225. elseif PanCoverBack = 2:
  226. $description += ' If worn without underwear your pussy is not covered at all and your butt is partly visible.'
  227. elseif PanCoverBack = 3:
  228. $description += ' If worn without underwear your pussy is not covered at all and your butt is clearly visible.'
  229. elseif PanCoverBack = 4:
  230. $description += ' If worn without underwear you pussy and your butt are not covered at all.'
  231. end
  232. end
  233. --- clothing_descriptions ---------------------------------