DNA.qsrc 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091
  1. # DNA
  2. ! {This file expects npctempgsex which is the desired sex of the NPC to be generated, $npctempgn[0], which is the used name of the generated NPC. Rapist or Red Headed Stranger, for example. And npctempgage, which is the approximate age of the NPC in years. Everything is then randomly generated, and you are expected to fix the generated NPC yourself with any special items you need from it after it completes running. So sex, what you call them until they introduce themselves, and age.}
  3. !! {A example to use this would be gs 'npcgeneratec', 0, 'stranger', rand(18,45) which would generate a male with a used name of stranger between 18 and 45.}
  4. npctempgsex = ARGS[0]
  5. $npctempgn[0] = $ARGS[1]
  6. npctempgage = ARGS[2]
  7. !! {First we set the newly generated index number or overwrite the first blank number}
  8. !! {Checks to see if array 0 in the cleanup list is available for overwrite and makes the overwrite as that if so.}
  9. if mid($cemptyarray[0],1,1) = 'C':
  10. $npclastgenerated = $cemptyarray[0]
  11. killvar '$cemptyarray', 0
  12. else
  13. :npcgencsanityloop
  14. i = 0
  15. $npclastgenerated = 'C' + '<<carraynumber>>'
  16. $npctemparrc = 'C' + '<<(carraynumber)-(1)>>'
  17. if $npc_persType[$npctemparrc] = '' and carraynumber > 0:
  18. carraynumber -= 1
  19. i = 1
  20. elseif $npc_persType[$npclastgenerated] = '':
  21. i = 0
  22. else
  23. carraynumber += 1
  24. i = 1
  25. end
  26. if i = 1: jump 'npcgencsanityloop'
  27. end
  28. carraynumber += 1
  29. ! {moved up to here}
  30. npclastgeneratedn = mid($npclastgenerated, 2)
  31. ! {Now we need a random birthday based on the rough age given.}
  32. npctempc1[1] = year - npctempgage
  33. npctempc1[2] = rand(1,12)
  34. if npctempc1[2] = 4 or npctempc1[2] = 6 or npctempc1[2] = 9 or npctempc1[2] = 11:
  35. npctempc1[3] = rand(1,30)
  36. elseif npctempc1[2] = 1 or npctempc1[2] = 3 or npctempc1[2] = 5 or npctempc1[2] = 7 or npctempc1[2] = 8 or npctempc1[2] = 10 or npctempc1[2] = 12:
  37. npctempc1[3] = rand(1,31)
  38. elseif ((npctempc1[1] mod 4 = 0) and (npctempc1[1] mod 100 ! 0)) or (npctempc1[1] mod 400 = 0):
  39. npctempc1[3] = rand(1,29)
  40. else
  41. npctempc1[3] = rand(1,28)
  42. end
  43. npc_dob[$npclastgenerated] = npctempc1[1] * 10000
  44. npc_dob[$npclastgenerated] += (npctempc1[2] * 100)
  45. npc_dob[$npclastgenerated] += npctempc1[3]
  46. ! {we save the unique number of the npc, to be able to get the index of the array via arrpos}
  47. $npc_dob[$npclastgenerated] = '<<npclastgeneratedn>>'
  48. ! {Now, we set the variable for the stat randomization as well as calculate chance of virginity.}
  49. if npctempgage < 18:
  50. npctempc2[0] = 30
  51. npctempc2[1] = rand(0,20)
  52. else
  53. npctempc2[0] = 50
  54. npctempc2[1] = rand(19,24)
  55. end
  56. ! {We flag virginity based on the results of the check. Overwrite it after generation if you want to be sure of status.}
  57. if npctempc2[1] >= 20:
  58. $npc_firstpart[$npclastgenerated] = 'U'
  59. $npc_lastpart[$npclastgenerated] = 'U'
  60. $npc_kidpater[$npclastgenerated] = 'N'
  61. else
  62. $npc_firstpart[$npclastgenerated] = 'V'
  63. $npc_lastpart[$npclastgenerated] = 'V'
  64. $npc_kidpater[$npclastgenerated] = 'N'
  65. npc_sexskill[$npclastgenerated] = 0
  66. end
  67. ! {index}
  68. npc_firstpart[$npclastgenerated] = npclastgeneratedn
  69. npc_lastpart[$npclastgenerated] = npclastgeneratedn
  70. npc_kidpater[$npclastgenerated] = npclastgeneratedn
  71. $npc_sexskill[$npclastgenerated] = '<<npclastgeneratedn>>'
  72. ! {Then we need to give them a name, and establish their official gender}
  73. if npctempgsex = 0:
  74. ! {Male}
  75. gs 'npcrnamefile', 'rusMale'
  76. gs 'npcgenext', 'dick'
  77. npc_gender[$npclastgenerated] = 0
  78. npc_cyc[$npclastgenerated] = -1
  79. npc_fert[$npclastgenerated] = -1
  80. npc_spermpot[$npclastgenerated] = 10000
  81. $npc_thdick[$npclastgenerated] = $npctempgn[4]
  82. npc_dick[$npclastgenerated] = npctempgn[5]
  83. $npc_notes[$npclastgenerated] = 'A male.'
  84. npc_bust[$npclastgenerated] = 0
  85. npc_nips[$npclastgenerated] = 1
  86. if npctempc2[1] >= 20:
  87. npc_hymen[$npclastgenerated] = -1
  88. end
  89. elseif npctempgsex = 1:
  90. ! {Female}
  91. gs 'npcrnamefile', 'rusFemale'
  92. npc_gender[$npclastgenerated] = 1
  93. npc_cyc[$npclastgenerated] = rand(0,29)
  94. npc_fert[$npclastgenerated] = 1
  95. npc_spermpot[$npclastgenerated] = -1
  96. $npc_thdick[$npclastgenerated] = 'clitoris'
  97. npc_dick[$npclastgenerated] = rand(0,1)
  98. $npc_notes[$npclastgenerated] = 'A female.'
  99. !!0 - 60 curve around 22,5 (C/D cups)
  100. npc_bust[$npclastgenerated] = rand(0,15) + rand(0,15) + rand(0,15) & if rand(1,10) = 1: npc_bust[$npclastgenerated] += rand(0,15)
  101. npc_nips[$npclastgenerated] = rand(2,6)
  102. if npctempc2[1] >= 20:
  103. npc_hymen[$npclastgenerated] = rand(4,6)
  104. else
  105. npc_hymen[$npclastgenerated] = 0
  106. end
  107. elseif npctempgsex = 2:
  108. ! {HermFemale}
  109. gs 'npcrnamefile', 'rusFemale'
  110. gs 'npcgenext', 'dick'
  111. npc_gender[$npclastgenerated] = 1
  112. npc_cyc[$npclastgenerated] = rand(0,29)
  113. npc_fert[$npclastgenerated] = 1
  114. npc_spermpot[$npclastgenerated] = -1
  115. $npc_thdick[$npclastgenerated] = 'clitoris'
  116. npc_dick[$npclastgenerated] = npctempgn[5]
  117. $npc_notes[$npclastgenerated] = 'A female Hermaphrodite.'
  118. !!0 - 60 curve around 22,5 (C/D cups)
  119. npc_bust[$npclastgenerated] = rand(0,15) + rand(0,15) + rand(0,15)
  120. npc_nips[$npclastgenerated] = rand(1,5)
  121. if npctempc2[1] >= 20:
  122. npc_hymen[$npclastgenerated] = rand(0,6)
  123. if npc_hymen[$npclastgenerated] < 4 and npc_hymen[$npclastgenerated] > 0: npc_hymen[$npclastgenerated] = 4
  124. else
  125. npc_hymen[$npclastgenerated] = 0
  126. end
  127. else
  128. ! {HermMale}
  129. gs 'npcrnamefile', 'rusMale'
  130. gs 'npcgenext', 'dick'
  131. npc_gender[$npclastgenerated] = 0
  132. npc_cyc[$npclastgenerated] = -1
  133. npc_fert[$npclastgenerated] = -1
  134. npc_spermpot[$npclastgenerated] = 10000
  135. $npc_thdick[$npclastgenerated] = $npctempgn[4]
  136. npc_dick[$npclastgenerated] = npctempgn[5]
  137. $npc_notes[$npclastgenerated] = 'A male Hermaphrodite.'
  138. npc_bust[$npclastgenerated]= rand(0,10)
  139. npc_nips[$npclastgenerated] = rand(1,3)
  140. if npctempc2[1] >= 20:
  141. npc_hymen[$npclastgenerated] = rand(0,6)
  142. if npc_hymen[$npclastgenerated] < 4 and npc_hymen[$npclastgenerated] > 0: npc_hymen[$npclastgenerated] = 4
  143. else
  144. npc_hymen[$npclastgenerated] = 0
  145. end
  146. end
  147. ! {index}
  148. $npc_gender[$npclastgenerated] = '<<npclastgeneratedn>>'
  149. $npc_cyc[$npclastgenerated] = '<<npclastgeneratedn>>'
  150. $npc_fert[$npclastgenerated] = '<<npclastgeneratedn>>'
  151. $npc_spermpot[$npclastgenerated] = '<<npclastgeneratedn>>'
  152. npc_thdick[$npclastgenerated] = npclastgeneratedn
  153. $npc_dick[$npclastgenerated] = '<<npclastgeneratedn>>'
  154. npc_notes[$npclastgenerated] = npclastgeneratedn
  155. $npc_bust[$npclastgenerated] = '<<npclastgeneratedn>>'
  156. $npc_nips[$npclastgenerated] = '<<npclastgeneratedn>>'
  157. $npc_hymen[$npclastgenerated] = '<<npclastgeneratedn>>'
  158. ! {Then we set the names, and the stat high ends as determined earlier.}
  159. gs 'npcrnamefile', 'rusSur'
  160. $npc_firstname[$npclastgenerated] = $npctempgn[1]
  161. $npc_nickname[$npclastgenerated] = $npctempgn[2]
  162. $npc_lastname[$npclastgenerated] = $npctempgn[3]
  163. $npc_usedname[$npclastgenerated] = $npctempgn[0]
  164. npc_vital[$npclastgenerated] = rand(1,npctempc2)
  165. npc_stren[$npclastgenerated] = rand(1,npctempc2)
  166. npc_intel[$npclastgenerated] = rand(1,npctempc2)
  167. npc_agil[$npclastgenerated] = rand(1,npctempc2)
  168. npc_sprt[$npclastgenerated] = rand(1,npctempc2)
  169. ! {index}
  170. npc_firstname[$npclastgenerated] = npclastgeneratedn
  171. npc_nickname[$npclastgenerated] = npclastgeneratedn
  172. npc_lastname[$npclastgenerated] = npclastgeneratedn
  173. npc_usedname[$npclastgenerated] = npclastgeneratedn
  174. $npc_vital[$npclastgenerated] = '<<npclastgeneratedn>>'
  175. $npc_stren[$npclastgenerated] = '<<npclastgeneratedn>>'
  176. $npc_intel[$npclastgenerated] = '<<npclastgeneratedn>>'
  177. $npc_agil[$npclastgenerated] = '<<npclastgeneratedn>>'
  178. $npc_sprt[$npclastgenerated] = '<<npclastgeneratedn>>'
  179. ! {Then we call out other stats}
  180. npc_magik[$npclastgenerated] = 0
  181. npc_drunk[$npclastgenerated] = 0
  182. npc_pantys[$npclastgenerated] = 0
  183. npc_vag[$npclastgenerated] = 0
  184. npc_ass[$npclastgenerated] = 0
  185. ! {index}
  186. $npc_magik[$npclastgenerated] = '<<npclastgeneratedn>>'
  187. $npc_drunk[$npclastgenerated] = '<<npclastgeneratedn>>'
  188. $npc_pantys[$npclastgenerated] = '<<npclastgeneratedn>>'
  189. $npc_vag[$npclastgenerated] = '<<npclastgeneratedn>>'
  190. $npc_ass[$npclastgenerated] = '<<npclastgeneratedn>>'
  191. ! {NPCs start with random horniness}
  192. npc_horny[$npclastgenerated] = rand(0,60)
  193. npc_Pavrep[$npclastgenerated] = 0
  194. npc_Godrep[$npclastgenerated] = 0
  195. ! {index}
  196. $npc_horny[$npclastgenerated] = '<<npclastgeneratedn>>'
  197. $npc_Pavrep[$npclastgenerated] = '<<npclastgeneratedn>>'
  198. $npc_Godrep[$npclastgenerated] = '<<npclastgeneratedn>>'
  199. ! {Random attractiveness}
  200. npc_apprnc[$npclastgenerated] = rand(30,60)
  201. npc_lipbalm[$npclastgenerated] = 0
  202. npc_makeup[$npclastgenerated] = 0
  203. npc_sweat[$npclastgenerated] = 0
  204. npc_dye[$npclastgenerated] = 0
  205. npc_hairbsh[$npclastgenerated] = 0
  206. ! {index}
  207. $npc_apprnc[$npclastgenerated] = '<<npclastgeneratedn>>'
  208. $npc_lipbalm[$npclastgenerated] = '<<npclastgeneratedn>>'
  209. $npc_makeup[$npclastgenerated] = '<<npclastgeneratedn>>'
  210. $npc_sweat[$npclastgenerated] = '<<npclastgeneratedn>>'
  211. $npc_dye[$npclastgenerated] = '<<npclastgeneratedn>>'
  212. $npc_hairbsh[$npclastgenerated] = '<<npclastgeneratedn>>'
  213. ! {Random skin quality and body hair}
  214. npc_skin[$npclastgenerated] = rand(30,70)
  215. npc_bodyhair[$npclastgenerated] = rand(0,4)
  216. npc_breath[$npclastgenerated] = 0
  217. npc_hipcurv[$npclastgenerated] = 0
  218. npc_hgt[$npclastgenerated] = 0
  219. npc_fat[$npclastgenerated] = 0
  220. ! {index}
  221. $npc_skin[$npclastgenerated] = '<<npclastgeneratedn>>'
  222. $npc_bodyhair[$npclastgenerated] = '<<npclastgeneratedn>>'
  223. $npc_breath[$npclastgenerated] = '<<npclastgeneratedn>>'
  224. $npc_hipcurv[$npclastgenerated] = '<<npclastgeneratedn>>'
  225. $npc_hgt[$npclastgenerated] = '<<npclastgeneratedn>>'
  226. $npc_fat[$npclastgenerated] = '<<npclastgeneratedn>>'
  227. ! {Random pubic hair}
  228. npc_haircol[$npclastgenerated] = 0
  229. npc_tan[$npclastgenerated] = 0
  230. npc_lip[$npclastgenerated] = 0
  231. npc_lashes[$npclastgenerated] = 0
  232. npc_eyesize[$npclastgenerated] = 0
  233. npc_eyecol[$npclastgenerated] = 0
  234. npc_dom[$npclastgenerated] = 0
  235. npc_sub[$npclastgenerated] = 0
  236. ! {index}
  237. $npc_haircol[$npclastgenerated] = '<<npclastgeneratedn>>'
  238. $npc_tan[$npclastgenerated] = '<<npclastgeneratedn>>'
  239. $npc_lip[$npclastgenerated] = '<<npclastgeneratedn>>'
  240. $npc_lashes[$npclastgenerated] = '<<npclastgeneratedn>>'
  241. $npc_eyesize[$npclastgenerated] = '<<npclastgeneratedn>>'
  242. $npc_eyecol[$npclastgenerated] = '<<npclastgeneratedn>>'
  243. $npc_dom[$npclastgenerated] = '<<npclastgeneratedn>>'
  244. $npc_sub[$npclastgenerated] = '<<npclastgeneratedn>>'
  245. ! {Starting at 0 quest state and love for the character, and slightly disliked.}
  246. npc_QW[$npclastgenerated]= 0
  247. npc_rel[$npclastgenerated] = 40
  248. npc_love[$npclastgenerated] = 0
  249. ! {index}
  250. $npc_QW[$npclastgenerated] = '<<npclastgeneratedn>>'
  251. $npc_rel[$npclastgenerated] = '<<npclastgeneratedn>>'
  252. $npc_love[$npclastgenerated] = '<<npclastgeneratedn>>'
  253. ! {Start unemployed and unspecified location}
  254. npc_job[$npclastgenerated] = 0
  255. npc_cloc[$npclastgenerated] = 0
  256. ! {index}
  257. $npc_job[$npclastgenerated] = '<<npclastgeneratedn>>'
  258. $npc_cloc[$npclastgenerated] = '<<npclastgeneratedn>>'
  259. ! {Unspecified dad and <<$npc_nickname[''A29'']>>, and picture. We could have a stock group of pictures and have it pick based on certain attribute types, but...}
  260. $npc_dad[$npclastgenerated] = 'U'
  261. $npc_mom[$npclastgenerated] = 'U'
  262. $npc_pic[$npclastgenerated] = 'xPICx'
  263. ! {index}
  264. npc_dad[$npclastgenerated] = npclastgeneratedn
  265. npc_mom[$npclastgenerated] = npclastgeneratedn
  266. npc_pic[$npclastgenerated] = npclastgeneratedn
  267. ! {STDs are not randomly given here. For characters with a STD, you need to gs npcgenext rstd. It will be expecting an npclastgeneratedn variable.}
  268. npc_herpes[$npclastgenerated] = 0
  269. npc_syth[$npclastgenerated] = 0
  270. npc_gon[$npclastgenerated] = 0
  271. npc_thrush[$npclastgenerated] = 0
  272. ! {index}
  273. $npc_herpes[$npclastgenerated] = '<<npclastgeneratedn>>'
  274. $npc_syth[$npclastgenerated] = '<<npclastgeneratedn>>'
  275. $npc_gon[$npclastgenerated] = '<<npclastgeneratedn>>'
  276. $npc_thrush[$npclastgenerated] = '<<npclastgeneratedn>>'
  277. ! {Chemestry and clothing preference are unspecified}
  278. npc_Chem[$npclastgenerated] = 0
  279. npc_Clothpref[$npclastgenerated] = 0
  280. ! {index}
  281. $npc_Chem[$npclastgenerated] = '<<npclastgeneratedn>>'
  282. $npc_Clothpref[$npclastgenerated] = '<<npclastgeneratedn>>'
  283. ! {Personality is called up}
  284. gs 'npcgenext', 'pers'
  285. $npc_PersType[$npclastgenerated] = $npctempgn[6]
  286. ! {index}
  287. npc_PersType[$npclastgenerated] = npclastgeneratedn
  288. ! {Creating the DNA of the character. If it is someone specific, like father, mother, daughter, sone, etc. then should be overwritten.}
  289. $npc_dna[$npclastgenerated] = func('DNA','create')
  290. ! {index}
  291. npc_dna[$npclastgenerated] = npclastgeneratedn
  292. ! {Variables are cleaned up.}
  293. killvar '$npctempgn'
  294. killvar 'npctempc1'
  295. killvar 'npctempc2'
  296. killvar 'npctempgsex'
  297. killvar '$npctempgn'
  298. killvar 'npctempgage'
  299. killvar '$npctemparrc'
  300. npctemp = 200
  301. $npc_dna['A<<npctemp>>'] = '7894193659 7682081397 7204840012 1999784485 1457862984 1446965385 1706290392'
  302. $npc_firstname['A<<npctemp>>'] = 'Daniil'
  303. $npc_nickname['A<<npctemp>>'] = 'Danek'
  304. $npc_lastname['A<<npctemp>>'] = 'Rasnik'
  305. $npc_usedname['A<<npctemp>>'] = 'Porn actor Daniel Scott'
  306. $npc_notes['A<<npctemp>>'] = 'Danek is a high functioning drug addict, using only heroin and so far managed to keep it a secret. He does porn so he would have money to buy the expensive stuff, because everything else is just "poison". On the set he is always "sober", but he regularly shoots up afterwards.'
  307. npc_dob['A<<npctemp>>'] = 19910222
  308. npc_gender['A<<npctemp>>'] = 0
  309. gs 'npcstaticdefaults', 'defaults'
  310. gs 'npcstaticdefaults', 'body', 'actor'
  311. $npc_thdick['A<<npctemp>>'] = 'well proportioned'
  312. npc_dick['A<<npctemp>>'] = 19
  313. npc_sexskill['A<<npctemp>>'] = 1
  314. npc_spermpot['A<<npctemp>>'] = 9000
  315. npc_hgt['A<<npctemp>>'] = 172
  316. npctemp = 201
  317. $npc_dna['A<<npctemp>>'] = '7997566748 7105919378 7895527285 1850847152 1168395089 1748895937 1871858376'
  318. $npc_firstname['A<<npctemp>>'] = 'Pyotr'
  319. $npc_nickname['A<<npctemp>>'] = 'Pepik'
  320. $npc_lastname['A<<npctemp>>'] = 'Izratam'
  321. $npc_usedname['A<<npctemp>>'] = 'Porn actor Peter Hunt'
  322. $npc_notes['A<<npctemp>>'] = 'Pepik is a true exhibitionist, and he enjoys doing porn. He does not do relationships, he is in his ''hunting phase'' as he likes to call it. He likes to brag about having at least six children from six different women, but this could be a lie to shape his public image, since he always has plenty of money, and never seen around with any child.'
  323. npc_dob['A<<npctemp>>'] = 19970427
  324. npc_gender['A<<npctemp>>'] = 0
  325. gs 'npcstaticdefaults', 'defaults'
  326. gs 'npcstaticdefaults', 'body', 'actor'
  327. $npc_thdick['A<<npctemp>>'] = 'well proportioned'
  328. npc_dick['A<<npctemp>>'] = 19
  329. npc_sexskill['A<<npctemp>>'] = 2
  330. npc_spermpot['A<<npctemp>>'] = 11000
  331. npctemp = 202
  332. $npc_dna['A<<npctemp>>'] = '7241994349 7588712776 7761775617 1033432556 1882492358 1835705225 1697690427'
  333. $npc_firstname['A<<npctemp>>'] = 'Oleg'
  334. $npc_nickname['A<<npctemp>>'] = 'Alusha'
  335. $npc_lastname['A<<npctemp>>'] = 'Taburov'
  336. $npc_usedname['A<<npctemp>>'] = 'Porn actor John Hook'
  337. $npc_notes['A<<npctemp>>'] = 'Alusha has been a soldier until he has been dishonorably discharged because falling asleep on guard duty blind drunk. He still is an alcoholic, without it he has the shakes. But in the porn business being slightly drunk is not a huge problem, until he is functioning. His temper is a bigger problem, he do swears something awfully.'
  338. npc_dob['A<<npctemp>>'] = 19881111
  339. npc_gender['A<<npctemp>>'] = 0
  340. gs 'npcstaticdefaults', 'defaults'
  341. gs 'npcstaticdefaults', 'body', 'actor'
  342. $npc_thdick['A<<npctemp>>'] = 'thick'
  343. npc_dick['A<<npctemp>>'] = 17
  344. npc_sexskill['A<<npctemp>>'] = 1
  345. npc_spermpot['A<<npctemp>>'] = 8500
  346. npctemp = 203
  347. $npc_dna['A<<npctemp>>'] = '7086114441 7277581517 7759004439 7806044180 7847240421 7645177267 7010982243'
  348. $npc_firstname['A<<npctemp>>'] = 'Rozalina'
  349. $npc_nickname['A<<npctemp>>'] = 'Roza'
  350. $npc_lastname['A<<npctemp>>'] = 'Harkov'
  351. $npc_usedname['A<<npctemp>>'] = 'Porn actress Rose Scarlet'
  352. $npc_notes['A<<npctemp>>'] = 'Roza and her older brother Vasya are both in the porn business, she agreed to do it after being raped for late payment. She decided that if she is fucked either way, then at least she would decide it. She dropped out of the university where she was learning to be a doctor, and started her porn ''career''. And since she is beautiful, she is popular enough to be able to repay her parents'' debt to the Bratva.'
  353. npc_dob['A<<npctemp>>'] = 19980202
  354. npc_gender['A<<npctemp>>'] = 1
  355. gs 'npcstaticdefaults', 'defaults'
  356. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  357. gs 'npcstaticdefaults', 'body', 'model'
  358. npc_fert['A<<npctemp>>'] = -1
  359. npc_sexskill['A<<npctemp>>'] = 2
  360. npctemp = 204
  361. $npc_dna['A<<npctemp>>'] = '1207762572 1494175825 2017959069 1121952704 1881785832 1188695069 2103222232'
  362. $npc_firstname['A<<npctemp>>'] = 'Savva'
  363. $npc_nickname['A<<npctemp>>'] = 'Savva'
  364. $npc_lastname['A<<npctemp>>'] = 'Timurovich'
  365. $npc_usedname['A<<npctemp>>'] = 'Savva'
  366. $npc_notes['A<<npctemp>>'] = 'Savva is a high-spirited, optimistic boy that works at an alternative clothes shop called Dolls. Due to him being openly gay, he is often harassed, most notably by gopniks. Despite any physical and verbal abuse thrown his way, he remains proud of who he is, and wants to see everyone else proud of who they are, especially if they''re gay, lesbian, transgender, etc. His personal motto is, "What hurts you today, makes you stronger tomorrow".'
  367. npc_dob['A<<npctemp>>'] = 19990124
  368. npc_gender['A<<npctemp>>'] = 0
  369. gs 'npcstaticdefaults', 'defaults'
  370. gs 'npcstaticdefaults', 'body', 'actor'
  371. $npc_thdick['A<<npctemp>>'] = 'well proportioned'
  372. npc_dick['A<<npctemp>>'] = 13
  373. npc_sexskill['A<<npctemp>>'] = 1
  374. npc_spermpot['A<<npctemp>>'] = 8500
  375. npc_rel['A<<npctemp>>'] = 30
  376. npctemp = 205
  377. $npc_dna['A<<npctemp>>'] = '1456495926 1825013001 1426346332 1658350924 1416940928 1235168107 1641113022'
  378. $npc_firstname['A<<npctemp>>'] = 'Viola'
  379. $npc_nickname['A<<npctemp>>'] = 'Viola'
  380. $npc_lastname['A<<npctemp>>'] = 'Valerievna'
  381. $npc_usedname['A<<npctemp>>'] = 'Viola'
  382. $npc_notes['A<<npctemp>>'] = 'Viola looks like your typical emo or alternative girl, her hair is often colored, she has a number of tattoos and piercings. She works at the Patchwork Dolls clothing store. She is in her late teens or early twenties, she has been working at the store for the past couple of years. She spends almost all her time on Vasilyevsky Island, claiming it is the most enlightened area in Russia.'
  383. npc_dob['A<<npctemp>>'] = 19981114
  384. npc_gender['A<<npctemp>>'] = 1
  385. gs 'npcstaticdefaults', 'defaults'
  386. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  387. gs 'npcstaticdefaults', 'body', 'model'
  388. npc_fert['A<<npctemp>>'] = -1
  389. npc_sexskill['A<<npctemp>>'] = 2
  390. npc_rel['A<<npctemp>>'] = 30
  391. npctemp = 206
  392. $npc_dna['A<<npctemp>>'] = '1445996359 2043177567 2087825407 1125768621 1193670508 1546731603 1153010368'
  393. $npc_firstname['A<<npctemp>>'] = 'Anastasia'
  394. $npc_nickname['A<<npctemp>>'] = 'Ana'
  395. $npc_lastname['A<<npctemp>>'] = 'Platonova'
  396. $npc_usedname['A<<npctemp>>'] = 'Ana'
  397. $npc_notes['A<<npctemp>>'] = 'Currently the most famous nude model in St. Petersburg. She tries to be motherly to the other models and help them in their careers and in life. Also uses her reputation to prostitute herself for more money.'
  398. npc_dob['A<<npctemp>>'] = 19891227
  399. npc_gender['A<<npctemp>>'] = 1
  400. gs 'npcstaticdefaults', 'defaults'
  401. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  402. gs 'npcstaticdefaults', 'body', 'model'
  403. npc_fert['A<<npctemp>>'] = -1
  404. npc_sexskill['A<<npctemp>>'] = 2
  405. npctemp = 207
  406. $npc_dna['A<<npctemp>>'] = '1566905938 1595812743 1264814903 1202807569 1219918665 1918355781 1112562700'
  407. $npc_firstname['A<<npctemp>>'] = 'Krystal'
  408. $npc_nickname['A<<npctemp>>'] = 'K'
  409. $npc_lastname['A<<npctemp>>'] = 'Boytsov'
  410. $npc_usedname['A<<npctemp>>'] = 'K'
  411. $npc_notes['A<<npctemp>>'] = 'A part time pornstar, part time model, she''s very cheerful and friendly and sex seems to exude from every facet of her life.'
  412. npc_dob['A<<npctemp>>'] = 19930404
  413. npc_gender['A<<npctemp>>'] = 1
  414. gs 'npcstaticdefaults', 'defaults'
  415. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  416. gs 'npcstaticdefaults', 'body', 'model'
  417. npc_fert['A<<npctemp>>'] = -1
  418. npc_sexskill['A<<npctemp>>'] = 2
  419. npctemp = 208
  420. $npc_dna['A<<npctemp>>'] = '1932253601 1542500697 1805737576 1647512030 1421214633 1204476129 1337037542'
  421. $npc_firstname['A<<npctemp>>'] = 'Emily'
  422. $npc_nickname['A<<npctemp>>'] = 'Emily'
  423. $npc_lastname['A<<npctemp>>'] = 'Rastorguyev'
  424. $npc_usedname['A<<npctemp>>'] = 'Emily'
  425. $npc_notes['A<<npctemp>>'] = 'A girl who grew up sexy and she knows it. She is often very bitchy to other models because she is focused on furthering her career and surpassing Anastasia to become the most famous model and she thinks everyone else is getting in her way.'
  426. npc_dob['A<<npctemp>>'] = 19960607
  427. npc_gender['A<<npctemp>>'] = 1
  428. gs 'npcstaticdefaults', 'defaults'
  429. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  430. gs 'npcstaticdefaults', 'body', 'model'
  431. npc_fert['A<<npctemp>>'] = -1
  432. npc_sexskill['A<<npctemp>>'] = 2
  433. npctemp = 209
  434. $npc_dna['A<<npctemp>>'] = '1740246374 1919208009 1680455685 1053484462 1109927912 1261930787 1696559936'
  435. $npc_firstname['A<<npctemp>>'] = 'Alexandra'
  436. $npc_nickname['A<<npctemp>>'] = 'Alex'
  437. $npc_lastname['A<<npctemp>>'] = 'Solokov'
  438. $npc_usedname['A<<npctemp>>'] = 'Jeff'
  439. $npc_notes['A<<npctemp>>'] = 'Cuddly girl who''s like a teddy bear. Huge airhead but is strangely very good at her schoolwork and very knowledgeable about sex from history working as an escort.'
  440. npc_dob['A<<npctemp>>'] = 19950314
  441. npc_gender['A<<npctemp>>'] = 1
  442. gs 'npcstaticdefaults', 'defaults'
  443. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  444. gs 'npcstaticdefaults', 'body', 'model'
  445. npc_fert['A<<npctemp>>'] = -1
  446. npc_sexskill['A<<npctemp>>'] = 2
  447. npctemp = 210
  448. $npc_dna['A<<npctemp>>'] = '1640400930 1342351528 2131093563 1484083540 1919336830 1219863190 1665725718'
  449. $npc_firstname['A<<npctemp>>'] = 'Miranda'
  450. $npc_nickname['A<<npctemp>>'] = 'Miranda'
  451. $npc_lastname['A<<npctemp>>'] = 'Kedrov'
  452. $npc_usedname['A<<npctemp>>'] = 'Miranda'
  453. $npc_notes['A<<npctemp>>'] = 'A veteran model who is incredibly professional but wishes she could find a nice man to marry so she can be a mother.'
  454. npc_dob['A<<npctemp>>'] = 19890919
  455. npc_gender['A<<npctemp>>'] = 1
  456. gs 'npcstaticdefaults', 'defaults'
  457. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  458. gs 'npcstaticdefaults', 'body', 'model'
  459. npc_fert['A<<npctemp>>'] = -1
  460. npc_sexskill['A<<npctemp>>'] = 2
  461. npctemp = 211
  462. $npc_dna['A<<npctemp>>'] = '1443139130 1162250781 1085782363 1683139508 1069866801 1832385584 1943117010'
  463. $npc_firstname['A<<npctemp>>'] = 'Lily'
  464. $npc_nickname['A<<npctemp>>'] = 'Lily'
  465. $npc_lastname['A<<npctemp>>'] = 'Ilyushin'
  466. $npc_usedname['A<<npctemp>>'] = 'Lily'
  467. $npc_notes['A<<npctemp>>'] = 'Very casual person who is very natural. She models part time, focusing more on being a pornstar and camgirl.'
  468. npc_dob['A<<npctemp>>'] = 19950816
  469. npc_gender['A<<npctemp>>'] = 1
  470. gs 'npcstaticdefaults', 'defaults'
  471. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  472. gs 'npcstaticdefaults', 'body', 'model'
  473. npc_fert['A<<npctemp>>'] = -1
  474. npc_sexskill['A<<npctemp>>'] = 2
  475. npctemp = 212
  476. $npc_dna['A<<npctemp>>'] = '1015649095 2130854423 1178171947 1162133847 1279076969 1411612180 1259864846'
  477. $npc_firstname['A<<npctemp>>'] = 'Mila'
  478. $npc_nickname['A<<npctemp>>'] = 'Mila'
  479. $npc_lastname['A<<npctemp>>'] = 'Aliyev'
  480. $npc_usedname['A<<npctemp>>'] = 'Mila'
  481. $npc_notes['A<<npctemp>>'] = 'A language and culture university student using modelling to pay her way through school. Friendly, but sometimes easily stressed out trying to balance modelling with schoolwork with keeping it a secret from the people in the university. Even more secret, she might actually get off on the idea that people who know her might see these lewd pictures of her.'
  482. npc_dob['A<<npctemp>>'] = 19980209
  483. npc_gender['A<<npctemp>>'] = 1
  484. gs 'npcstaticdefaults', 'defaults'
  485. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  486. gs 'npcstaticdefaults', 'body', 'model'
  487. npc_fert['A<<npctemp>>'] = -1
  488. npc_sexskill['A<<npctemp>>'] = 2
  489. npctemp = 213
  490. $npc_dna['A<<npctemp>>'] = '1196820157 1491541486 1231314034 1944307266 1012640921 1225217068 1797663802'
  491. $npc_firstname['A<<npctemp>>'] = 'Mariya'
  492. $npc_nickname['A<<npctemp>>'] = 'Mari'
  493. $npc_lastname['A<<npctemp>>'] = 'Enstky'
  494. $npc_usedname['A<<npctemp>>'] = 'Mari'
  495. $npc_notes['A<<npctemp>>'] = 'A farm girl who grew up in Gadukino before she got tired of it and jumped head first into the big city life by doing nude modelling. Has become very accustomed to being nude to the point that she takes some level of joy in it, although not like that of an exhibitionist. She thinks she''s straight but she''s actually bisexual and doesn''t know it.'
  496. npc_dob['A<<npctemp>>'] = 19980520
  497. npc_gender['A<<npctemp>>'] = 1
  498. gs 'npcstaticdefaults', 'defaults'
  499. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  500. gs 'npcstaticdefaults', 'body', 'model'
  501. npc_fert['A<<npctemp>>'] = -1
  502. npc_sexskill['A<<npctemp>>'] = 2
  503. npctemp = 214
  504. $npc_dna['A<<npctemp>>'] = '1706592901 1601659001 1072073515 1446208368 1788494018 1754604560 1645525487'
  505. $npc_firstname['A<<npctemp>>'] = 'Olga'
  506. $npc_nickname['A<<npctemp>>'] = 'Olga'
  507. $npc_lastname['A<<npctemp>>'] = 'Kuzubov'
  508. $npc_usedname['A<<npctemp>>'] = 'Olga'
  509. $npc_notes['A<<npctemp>>'] = 'An actress with a wild spirit. Free and unpredictable, she''s very artistic and is the reason she got into modelling. For her it''s a bit more of a hobby since she gets paid enough for doing movies and stuff.'
  510. npc_dob['A<<npctemp>>'] = 19861117
  511. npc_gender['A<<npctemp>>'] = 1
  512. gs 'npcstaticdefaults', 'defaults'
  513. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  514. gs 'npcstaticdefaults', 'body', 'model'
  515. npc_fert['A<<npctemp>>'] = -1
  516. npc_sexskill['A<<npctemp>>'] = 2
  517. npctemp = 215
  518. $npc_dna['A<<npctemp>>'] = '1841305338 1934557807 2127062159 2015882090 2056884118 1132783555 1576490435'
  519. $npc_firstname['A<<npctemp>>'] = 'Alisa'
  520. $npc_nickname['A<<npctemp>>'] = 'Alisa'
  521. $npc_lastname['A<<npctemp>>'] = 'Alexandrov'
  522. $npc_usedname['A<<npctemp>>'] = 'Alisa'
  523. $npc_notes['A<<npctemp>>'] = 'Just another random model who isn''t very famous. She is very nonchalant, not particularly social, mostly there for the money, not really looking for a career or anything, doesn''t interact with others very much as a result.'
  524. npc_dob['A<<npctemp>>'] = 19980106
  525. npc_gender['A<<npctemp>>'] = 1
  526. gs 'npcstaticdefaults', 'defaults'
  527. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  528. gs 'npcstaticdefaults', 'body', 'model'
  529. npc_fert['A<<npctemp>>'] = -1
  530. npc_sexskill['A<<npctemp>>'] = 2
  531. npctemp = 216
  532. $npc_dna['A<<npctemp>>'] = '1542858357 1009682026 2043057884 1700422516 1825246284 1473718491 1145465003'
  533. $npc_firstname['A<<npctemp>>'] = 'Martin'
  534. $npc_nickname['A<<npctemp>>'] = 'Martin'
  535. $npc_lastname['A<<npctemp>>'] = 'Martínez'
  536. $npc_usedname['A<<npctemp>>'] = 'Martin'
  537. $npc_notes['A<<npctemp>>'] = ''
  538. npc_dob['A<<npctemp>>'] = 19690703
  539. npc_gender['A<<npctemp>>'] = 0
  540. gs 'npcstaticdefaults', 'defaults'
  541. $npc_thdick['A<<npctemp>>'] = 'well-proportioned'
  542. npc_dick['A<<npctemp>>'] = 18
  543. npc_sexskill['A<<npctemp>>'] = 1
  544. npctemp = 217
  545. $npc_dna['A<<npctemp>>'] = '1293492227 1092251557 1817170283 1188737490 1962390512 1811716752 1347276837'
  546. $npc_firstname['A<<npctemp>>'] = 'Varsonofy'
  547. $npc_nickname['A<<npctemp>>'] = 'Pavlin'
  548. $npc_lastname['A<<npctemp>>'] = 'Krestovoz'
  549. $npc_usedname['A<<npctemp>>'] = 'Pavlin'
  550. $npc_notes['A<<npctemp>>'] = 'Varsonofy Krestovoz is a small time gangster who makes his money by whoring out vulnerable women in Pavlovsk. Few people know his name as he is usually called Pavlin (the Peacock).'
  551. npc_dob['A<<npctemp>>'] = 19851109
  552. npc_gender['A<<npctemp>>'] = 0
  553. gs 'npcstaticdefaults', 'defaults'
  554. $npc_thdick['A<<npctemp>>'] = 'thicker than average'
  555. npc_dick['A<<npctemp>>'] = 19
  556. npc_sexskill['A<<npctemp>>'] = 2
  557. npc_spermpot['A<<npctemp>>'] = 15000
  558. npctemp = 218
  559. $npc_dna['A<<npctemp>>'] = '5202110092 7845565703 6464348916 9732666365 5079835231 5694584637 6691107840'
  560. !! Her dads DNA: 6464348916 5694584637 6691107840 5573828639 2708900987 2978548641 1067638646
  561. $npc_firstname['A<<npctemp>>'] = 'Tanya'
  562. $npc_nickname['A<<npctemp>>'] = 'Tanya'
  563. $npc_lastname['A<<npctemp>>'] = 'Polyakov'
  564. $npc_usedname['A<<npctemp>>'] = 'Tanya'
  565. $npc_notes['A<<npctemp>>'] = 'Girl you meet at the city gym'
  566. npc_dob['A<<npctemp>>'] = 19980622
  567. npc_gender['A<<npctemp>>'] = 1
  568. gs 'npcstaticdefaults', 'defaults'
  569. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  570. gs 'npcstaticdefaults', 'body', 'model'
  571. npc_fert['A<<npctemp>>'] = -1
  572. npc_sexskill['A<<npctemp>>'] = 2
  573. npctemp = 219
  574. $npc_dna['A<<npctemp>>'] = '3363881169 9173549929 4285014077 5418012627 3214080232 5741158606 9206523653'
  575. $npc_firstname['A<<npctemp>>'] = 'Katja'
  576. $npc_nickname['A<<npctemp>>'] = 'Kat'
  577. $npc_lastname['A<<npctemp>>'] = 'Makarova'
  578. $npc_usedname['A<<npctemp>>'] = 'Kat'
  579. $npc_notes['A<<npctemp>>'] = 'Girl you meet at the city lake'
  580. npc_dob['A<<npctemp>>'] = 19970317
  581. npc_gender['A<<npctemp>>'] = 1
  582. gs 'npcstaticdefaults', 'defaults'
  583. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  584. gs 'npcstaticdefaults', 'body', 'model'
  585. npc_fert['A<<npctemp>>'] = -1
  586. npc_sexskill['A<<npctemp>>'] = 2
  587. npctemp = 220
  588. $npc_dna['A<<npctemp>>'] = '6675506212 5051737442 5740356104 9947679629 3042231652 6247569074 1233026260'
  589. $npc_firstname['A<<npctemp>>'] = 'Vika'
  590. $npc_nickname['A<<npctemp>>'] = 'Vika'
  591. $npc_lastname['A<<npctemp>>'] = 'Kirilov'
  592. $npc_usedname['A<<npctemp>>'] = 'Vika'
  593. $npc_notes['A<<npctemp>>'] = 'Vika goes to the local university. She came from a town in a truly remote part of Russia. Her familiy is poor. She pays for her studies by working in a brothel in the city center.'
  594. npc_dob['A<<npctemp>>'] = pcs_dob - 10000
  595. npc_gender['A<<npctemp>>'] = 1
  596. gs 'npcstaticdefaults', 'defaults'
  597. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  598. gs 'npcstaticdefaults', 'body', 'model'
  599. npc_fert['A<<npctemp>>'] = -1
  600. npc_sexskill['A<<npctemp>>'] = 2
  601. npctemp = 221
  602. $npc_dna['A<<npctemp>>'] = '1948232040 5876497260 6370729556 6591408199 9948768808 2245632532 3569109223'
  603. $npc_firstname['A<<npctemp>>'] = 'Grigory'
  604. $npc_nickname['A<<npctemp>>'] = 'Grigory'
  605. $npc_lastname['A<<npctemp>>'] = 'Chekov'
  606. $npc_usedname['A<<npctemp>>'] = 'Grigory'
  607. $npc_notes['A<<npctemp>>'] = 'Grigory is a farmhand who has worked on your grandparents land for many years.'
  608. npc_dob['A<<npctemp>>'] = 19860603
  609. npc_gender['A<<npctemp>>'] = 0
  610. gs 'npcstaticdefaults', 'defaults'
  611. $npc_thdick['A<<npctemp>>'] = 'thicker than average'
  612. npc_dick['A<<npctemp>>'] = 14
  613. npc_sexskill['A<<npctemp>>'] = 2
  614. npc_spermpot['A<<npctemp>>'] = 15000
  615. npctemp = 222
  616. $npc_dna['A<<npctemp>>'] = '7241994349 7588712776 7761775617 1033432556 1882492358 1835705225 1697690427'
  617. $npc_firstname['A<<npctemp>>'] = 'Gennadily'
  618. $npc_nickname['A<<npctemp>>'] = 'Gena'
  619. $npc_lastname['A<<npctemp>>'] = 'Nikolayevich'
  620. $npc_usedname['A<<npctemp>>'] = 'Mr. Nikolayevich'
  621. $npc_notes['A<<npctemp>>'] = 'A director in the Russian film industry. He is mostly known for his horror movies with gratuitous amounts of unnecessary female nudity and sex.'
  622. npc_dob['A<<npctemp>>'] = 19690531
  623. npc_gender['A<<npctemp>>'] = 0
  624. gs 'npcstaticdefaults', 'defaults'
  625. gs 'npcstaticdefaults', 'body', 'actor'
  626. $npc_thdick['A<<npctemp>>'] = 'thick'
  627. npc_dick['A<<npctemp>>'] = 17
  628. npc_sexskill['A<<npctemp>>'] = 2
  629. npc_spermpot['A<<npctemp>>'] = 8500
  630. npctemp = 223
  631. $npc_dna['A<<npctemp>>'] = '1207762572 1494175825 2017959069 1121952704 1881785832 1188695069 2103222232'
  632. $npc_firstname['A<<npctemp>>'] = 'Artur'
  633. $npc_nickname['A<<npctemp>>'] = 'Art'
  634. $npc_lastname['A<<npctemp>>'] = 'Yanovich'
  635. $npc_usedname['A<<npctemp>>'] = 'Mr. Yanovich'
  636. $npc_notes['A<<npctemp>>'] = 'A producer in the Russian film industry. He works often with SMTV and makes new age television shows like Unashamed, Cauflornication, and You''re The Best.'
  637. npc_dob['A<<npctemp>>'] = 19680925
  638. npc_gender['A<<npctemp>>'] = 0
  639. gs 'npcstaticdefaults', 'defaults'
  640. gs 'npcstaticdefaults', 'body', 'actor'
  641. $npc_thdick['A<<npctemp>>'] = 'well proportioned'
  642. npc_dick['A<<npctemp>>'] = 13
  643. npc_sexskill['A<<npctemp>>'] = 2
  644. npc_spermpot['A<<npctemp>>'] = 8500
  645. npc_rel['A<<npctemp>>'] = 30
  646. npctemp = 224
  647. $npc_dna['A<<npctemp>>'] = '1542858357 1009682026 2043057884 1700422516 1825246284 1473718491 1145465003'
  648. $npc_firstname['A<<npctemp>>'] = 'Dimitry'
  649. $npc_nickname['A<<npctemp>>'] = 'Dima'
  650. $npc_lastname['A<<npctemp>>'] = 'Schneider'
  651. $npc_usedname['A<<npctemp>>'] = 'Mr. Schneider'
  652. $npc_notes['A<<npctemp>>'] = 'A television producer and director in St. Petersburg. He is known for making teen situation comedy shows for various networks, often with nubile female leads. These include but are not limited to <i>iKaterina</i>, <i>Saved by Your Balls</i>, and <i>Draco and Iosef</i>.'
  653. npc_dob['A<<npctemp>>'] = 19760924
  654. npc_gender['A<<npctemp>>'] = 0
  655. gs 'npcstaticdefaults', 'defaults'
  656. $npc_thdick['A<<npctemp>>'] = 'thick'
  657. npc_dick['A<<npctemp>>'] = 11
  658. npc_sexskill['A<<npctemp>>'] = 1
  659. npctemp = 225
  660. $npc_dna['A<<npctemp>>'] = '1293492227 1092251557 1817170283 1188737490 1962390512 1811716752 1347276837'
  661. $npc_firstname['A<<npctemp>>'] = 'Ilyich'
  662. $npc_nickname['A<<npctemp>>'] = 'Ilyich'
  663. $npc_lastname['A<<npctemp>>'] = 'Chendev'
  664. $npc_usedname['A<<npctemp>>'] = 'Mr. Chendev'
  665. $npc_notes['A<<npctemp>>'] = 'Ilyich Chendev is a television producer who produces all the majority of the new and original ground breaking drama shows such as <i>Wanton Women</i>, <i>The Tarasovs</i>, and <i>Broken Badness</i>.'
  666. npc_dob['A<<npctemp>>'] = 19820628
  667. npc_gender['A<<npctemp>>'] = 0
  668. gs 'npcstaticdefaults', 'defaults'
  669. $npc_thdick['A<<npctemp>>'] = 'thicker than average'
  670. npc_dick['A<<npctemp>>'] = 19
  671. npc_sexskill['A<<npctemp>>'] = 2
  672. npc_spermpot['A<<npctemp>>'] = 15000
  673. npctemp = 226
  674. $npc_dna['A<<npctemp>>'] = '1948232040 5876497260 6370729556 6591408199 9948768808 2245632532 3569109223'
  675. $npc_firstname['A<<npctemp>>'] = 'Arseni '
  676. $npc_nickname['A<<npctemp>>'] = 'Arseni '
  677. $npc_lastname['A<<npctemp>>'] = 'Stepankov'
  678. $npc_usedname['A<<npctemp>>'] = 'Mr. Stepankov'
  679. $npc_notes['A<<npctemp>>'] = 'Arseni is a movie producer who is considered the blockbuster film maker of Russia.'
  680. npc_dob['A<<npctemp>>'] = 19760805
  681. npc_gender['A<<npctemp>>'] = 0
  682. gs 'npcstaticdefaults', 'defaults'
  683. $npc_thdick['A<<npctemp>>'] = 'thicker than average'
  684. npc_dick['A<<npctemp>>'] = 14
  685. npc_sexskill['A<<npctemp>>'] = 2
  686. npc_spermpot['A<<npctemp>>'] = 15000
  687. npctemp = 227
  688. $npc_dna['A<<npctemp>>'] = '7894193659 7682081397 7204840012 1999784485 1457862984 1446965385 1706290392'
  689. $npc_firstname['A<<npctemp>>'] = 'Daniil'
  690. $npc_nickname['A<<npctemp>>'] = 'Dan'
  691. $npc_lastname['A<<npctemp>>'] = 'Bezrukov'
  692. $npc_usedname['A<<npctemp>>'] = 'Mr. Bezrukov'
  693. $npc_notes['A<<npctemp>>'] = 'One of the two showrunners of the incredibly popular mature fantasy series <i>Game of Whores</i>.'
  694. npc_dob['A<<npctemp>>'] = 19700925
  695. npc_gender['A<<npctemp>>'] = 0
  696. gs 'npcstaticdefaults', 'defaults'
  697. gs 'npcstaticdefaults', 'body', 'actor'
  698. $npc_thdick['A<<npctemp>>'] = 'well proportioned'
  699. npc_dick['A<<npctemp>>'] = 19
  700. npc_sexskill['A<<npctemp>>'] = 1
  701. npc_spermpot['A<<npctemp>>'] = 9000
  702. npc_hgt['A<<npctemp>>'] = 172
  703. npctemp = 228
  704. $npc_dna['A<<npctemp>>'] = '7997566748 7105919378 7895527285 1850847152 1168395089 1748895937 1871858376'
  705. $npc_firstname['A<<npctemp>>'] = 'David'
  706. $npc_nickname['A<<npctemp>>'] = 'David'
  707. $npc_lastname['A<<npctemp>>'] = 'Bekhterev'
  708. $npc_usedname['A<<npctemp>>'] = 'Mr. Bekhterev'
  709. $npc_notes['A<<npctemp>>'] = 'One of the two showrunners of the incredibly popular mature fantasy series <i>Game of Whores</i>.'
  710. npc_dob['A<<npctemp>>'] = 19710228
  711. npc_gender['A<<npctemp>>'] = 0
  712. gs 'npcstaticdefaults', 'defaults'
  713. gs 'npcstaticdefaults', 'body', 'actor'
  714. $npc_thdick['A<<npctemp>>'] = 'well proportioned'
  715. npc_dick['A<<npctemp>>'] = 19
  716. npc_sexskill['A<<npctemp>>'] = 1
  717. npc_spermpot['A<<npctemp>>'] = 11000
  718. npctemp = 229
  719. $npc_dna['A<<npctemp>>'] = '7241994349 7588712776 7761775617 1033432556 1882492358 1835705225 1697690427'
  720. $npc_firstname['A<<npctemp>>'] = 'Andrei'
  721. $npc_nickname['A<<npctemp>>'] = 'Andrei'
  722. $npc_lastname['A<<npctemp>>'] = 'Yankovsky'
  723. $npc_usedname['A<<npctemp>>'] = 'Mr. Yankovsky'
  724. $npc_notes['A<<npctemp>>'] = 'Andrei Yankovsky is the twin brother of Leonid Yankovsky. The two of them work together in the Russian film industry to create exciting sci-fi movies.'
  725. npc_dob['A<<npctemp>>'] = 19670526
  726. npc_gender['A<<npctemp>>'] = 0
  727. gs 'npcstaticdefaults', 'defaults'
  728. gs 'npcstaticdefaults', 'body', 'actor'
  729. $npc_thdick['A<<npctemp>>'] = 'thick'
  730. npc_dick['A<<npctemp>>'] = 17
  731. npc_sexskill['A<<npctemp>>'] = 1
  732. npc_spermpot['A<<npctemp>>'] = 8500
  733. npctemp = 230
  734. $npc_dna['A<<npctemp>>'] = '7241994349 7588712776 7761775617 1033432556 1882492358 1835705225 1697690427'
  735. $npc_firstname['A<<npctemp>>'] = 'Leonid'
  736. $npc_nickname['A<<npctemp>>'] = 'Leonid'
  737. $npc_lastname['A<<npctemp>>'] = 'Yankovsky'
  738. $npc_usedname['A<<npctemp>>'] = 'Mr. Yankovsky'
  739. $npc_notes['A<<npctemp>>'] = 'Leonid Yankovsky is the twin brother of Andrei Yankovsky. The two of them work together in the Russian film industry to create exciting sci-fi movies.'
  740. npc_dob['A<<npctemp>>'] = 19670526
  741. npc_gender['A<<npctemp>>'] = 0
  742. gs 'npcstaticdefaults', 'defaults'
  743. gs 'npcstaticdefaults', 'body', 'actor'
  744. $npc_thdick['A<<npctemp>>'] = 'thick'
  745. npc_dick['A<<npctemp>>'] = 17
  746. npc_sexskill['A<<npctemp>>'] = 1
  747. npc_spermpot['A<<npctemp>>'] = 8500
  748. npctemp = 231
  749. $npc_dna['A<<npctemp>>'] = '1263221443 9149303548 9924295213 3412488451 0692260208 9156586673 648903478'
  750. $npc_firstname['A<<npctemp>>'] = 'Aleksandra'
  751. $npc_nickname['A<<npctemp>>'] = 'Alex'
  752. $npc_lastname['A<<npctemp>>'] = 'Kirilenko'
  753. $npc_usedname['A<<npctemp>>'] = 'Alex'
  754. if npc_QW['A231'] = -1:
  755. $npc_notes['A<<npctemp>>'] = 'Ever since you outed Alex to Lizaveta, she has been tortured endlessly. The only time the girls will acknowledge her presence is when they''re verbally abusing her, while the guys ignore her completely due to the fear of being considered gay for hitting on someone with a dick.'
  756. elseif npc_QW['A231'] >= 2 and npc_QW['A231'] < 5:
  757. $npc_notes['A<<npctemp>>'] = 'After a complete accident, you now know that Alex is actually a trans woman. It seems that Aleksandra is placing a lot of faith in you to keep her secret, but you''re still not sure how you feel about the situation. You need some more time to process everything in order to make the decision you feel is the correct one.'
  758. elseif npc_QW['A231'] >= 5:
  759. $npc_notes['A<<npctemp>>'] = 'After taking the time to really think about the situation with Alex, you realized that you had feelings for her. You sat her down and revealed these feelings to her and now have started a secret romantic relationship.'
  760. else
  761. $npc_notes['A<<npctemp>>'] = 'Alex Kirilenko is a very shy and introverted girl who seems to go out of her way to be by herself. No one really knows much about her other than she does really well in school and spends a lot of her afternoons at the library reading. She has never shown interest any of the guys or girls at the school, and refuses any advances made by the guys.'
  762. end
  763. npc_dob['A<<npctemp>>'] = 20000229
  764. npc_gender['A<<npctemp>>'] = 1
  765. gs 'npcstaticdefaults', 'defaults'
  766. gs 'npcstaticdefaults', 'group', 'nerd'
  767. npc_cyc['A<<npctemp>>'] = -1
  768. npc_fert['A<<npctemp>>'] = -1
  769. $npc_thdick['A<<npctemp>>'] = 'slim'
  770. npc_dick['A<<npctemp>>'] = 17
  771. npc_sexskill['A<<npctemp>>'] = 1
  772. npc_spermpot['A<<npctemp>>'] = 5000
  773. npc_vag['A<<npctemp>>'] = -1
  774. npc_hymen['A<<npctemp>>'] = -1
  775. npc_hgt['A<<npctemp>>'] = 170
  776. npc_bust['A<<npctemp>>'] = 9
  777. npc_nips['A<<npctemp>>'] = 4
  778. npc_haircol['A<<npctemp>>'] = 1
  779. npc_tan['A<<npctemp>>'] = 1
  780. npc_lip['A<<npctemp>>'] = 1
  781. npc_eyecol['A<<npctemp>>'] = 1
  782. npc_selfieon['A<<npctemp>>'] = 0
  783. schoolenable['A<<npctemp>>'] = 0
  784. discoenable['A<<npctemp>>'] = 0
  785. $npcGoSchool['A<<npctemp>>'] = ''
  786. npctemp = 232
  787. $npc_dna['A<<npctemp>>'] = '7845565703 9732666365 5079835231 4099096300 1653287931 7271394997 0865417545'
  788. $npc_firstname['A<<npctemp>>'] = 'Gala'
  789. $npc_nickname['A<<npctemp>>'] = 'Gala'
  790. $npc_lastname['A<<npctemp>>'] = 'Polyakov'
  791. $npc_usedname['A<<npctemp>>'] = 'Gala'
  792. $npc_notes['A<<npctemp>>'] = 'Wife of Nicholas and mother of Tanya'
  793. npc_dob['A<<npctemp>>'] = 19810225
  794. npc_gender['A<<npctemp>>'] = 1
  795. gs 'npcstaticdefaults', 'defaults'
  796. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  797. gs 'npcstaticdefaults', 'body', 'model'
  798. npc_fert['A<<npctemp>>'] = -1
  799. npc_sexskill['A<<npctemp>>'] = 2
  800. npctemp = 233
  801. $npc_dna['A<<npctemp>>'] = '9159003581 0954981945 0686651022 2271837550 3220855447 8045833245 0831070730'
  802. $npc_firstname['A<<npctemp>>'] = 'Taras'
  803. $npc_lastname['A<<npctemp>>'] = 'Polyakov'
  804. $npc_usedname['A<<npctemp>>'] = 'Taras'
  805. $npc_notes['A<<npctemp>>'] = 'Bodyguard of Gala Polyakov'
  806. npc_gender['A<<npctemp>>'] = 0
  807. gs 'npcstaticdefaults', 'defaults'
  808. $npc_thdick['A<<npctemp>>'] = 'thick'
  809. npc_dick['A<<npctemp>>'] = 16
  810. npctemp = 234
  811. $npc_dna['A<<npctemp>>'] = '9695699672 2188071337 5246878581 9504515633 1030174716 8079090096 1524386291'
  812. $npc_firstname['A<<npctemp>>'] = 'Elena'
  813. $npc_nickname['A<<npctemp>>'] = 'Elli'
  814. $npc_lastname['A<<npctemp>>'] = 'Yaroslava'
  815. $npc_usedname['A<<npctemp>>'] = 'Elli'
  816. $npc_notes['A<<npctemp>>'] = 'A College student who pays the bills by occasionally acting in porn.'
  817. npc_dob['A<<npctemp>>'] = 19961209
  818. npc_gender['A<<npctemp>>'] = 1
  819. gs 'npcstaticdefaults', 'defaults'
  820. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  821. gs 'npcstaticdefaults', 'body', 'model'
  822. npc_fert['A<<npctemp>>'] = -1
  823. npc_sexskill['A<<npctemp>>'] = 2
  824. npc_bust['A<<npctemp>>'] = 85
  825. npctemp = 235
  826. $npc_dna['A<<npctemp>>'] = '1659877224 0446724555 3103627999 3833951928 1497696794 6407426024 1077931925'
  827. $npc_firstname['A<<npctemp>>'] = 'Juliana'
  828. $npc_nickname['A<<npctemp>>'] = 'Juli'
  829. $npc_lastname['A<<npctemp>>'] = 'Slavenka'
  830. $npc_usedname['A<<npctemp>>'] = 'Juli'
  831. $npc_notes['A<<npctemp>>'] = 'A pornstar in her late twenties. She knows she can''t keep doing this for much longer and is trying to make as much money as she can before retirement.'
  832. npc_dob['A<<npctemp>>'] = 19880703
  833. npc_gender['A<<npctemp>>'] = 1
  834. gs 'npcstaticdefaults', 'defaults'
  835. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  836. gs 'npcstaticdefaults', 'body', 'model'
  837. npc_fert['A<<npctemp>>'] = -1
  838. npc_sexskill['A<<npctemp>>'] = 3
  839. npc_hgt['A<<npctemp>>'] = 170
  840. npctemp = 236
  841. $npc_dna['A<<npctemp>>'] = '4420463501 4700373866 1041563160 2521275829 6839571651 6935648190 6904190017'
  842. $npc_firstname['A<<npctemp>>'] = 'Valentina'
  843. $npc_nickname['A<<npctemp>>'] = 'Tina'
  844. $npc_lastname['A<<npctemp>>'] = 'Kuznetsova'
  845. $npc_usedname['A<<npctemp>>'] = 'Tina'
  846. $npc_notes['A<<npctemp>>'] = 'A self absorbed pornstar. She thinks way too much of herself and is often hostile to other female stars.'
  847. npc_dob['A<<npctemp>>'] = 19930404
  848. npc_gender['A<<npctemp>>'] = 1
  849. gs 'npcstaticdefaults', 'defaults'
  850. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  851. gs 'npcstaticdefaults', 'body', 'model'
  852. npc_fert['A<<npctemp>>'] = -1
  853. npc_sexskill['A<<npctemp>>'] = 2
  854. npctemp = 237
  855. $npc_dna['A<<npctemp>>'] = '0395612421 7689521188 7574391125 3952549504 1777153600 5788079489 6391170185'
  856. $npc_firstname['A<<npctemp>>'] = 'Aliana'
  857. $npc_nickname['A<<npctemp>>'] = 'Alli'
  858. $npc_lastname['A<<npctemp>>'] = 'Smirnova'
  859. $npc_usedname['A<<npctemp>>'] = 'Alli'
  860. $npc_notes['A<<npctemp>>'] = 'She signed up with the porn studio the moment she turned 18. She gets a lot of ageplay roles because she looks very young.'
  861. npc_dob['A<<npctemp>>'] = 19980523
  862. npc_gender['A<<npctemp>>'] = 1
  863. gs 'npcstaticdefaults', 'defaults'
  864. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  865. gs 'npcstaticdefaults', 'body', 'model'
  866. npc_fert['A<<npctemp>>'] = -1
  867. npc_sexskill['A<<npctemp>>'] = 2
  868. npc_hgt['A<<npctemp>>'] = 155
  869. npc_bust['A<<npctemp>>'] = 70
  870. npctemp = 238
  871. $npc_dna['A<<npctemp>>'] = '1616738815 1229942753 1120816404 8948881745 9044057609 3291132452 6993693998'
  872. $npc_firstname['A<<npctemp>>'] = 'Glinina'
  873. $npc_nickname['A<<npctemp>>'] = 'Glinina'
  874. $npc_lastname['A<<npctemp>>'] = 'Chebotarev'
  875. $npc_usedname['A<<npctemp>>'] = 'Glinina'
  876. $npc_notes['A<<npctemp>>'] = 'Artems mother, she works at the community center library as the librarian. She meet her husband, Artems father when they both attended Pavlovsk Secondary School and started dating then. They both attend to the University in Saint Petersburg and after both graduating got married and moved back to Pavlovsk, when her husband Masharin was offered a job at the Palace as a office administrator for the computer system. Soon after she got pregnant with Artem and she now hopes her son will have the same kind of happy life her and her husband had. She hopes he meets a nice smart girl in school and they can go to college together before settling down to get married and have kids.'
  877. npc_dob['A<<npctemp>>'] = 19980106
  878. npc_gender['A<<npctemp>>'] = 1
  879. gs 'npcstaticdefaults', 'defaults'
  880. gs 'npcstaticdefaults', 'skills', 'combat', 'dance', 'sport'
  881. gs 'npcstaticdefaults', 'body', 'model'
  882. npc_fert['A<<npctemp>>'] = -1
  883. $npc_lastpart['A<<npctemp>>'] = 'A239'
  884. npc_sexskill['A<<npctemp>>'] = 2
  885. npctemp = 239
  886. $npc_dna['A<<npctemp>>'] = '1589755494 1371564141 1910586302 1267743255 0311208650 1976836914 9019710461'
  887. $npc_firstname['A<<npctemp>>'] = 'Masharin'
  888. $npc_nickname['A<<npctemp>>'] = 'Masharin'
  889. $npc_lastname['A<<npctemp>>'] = 'Chebotarev'
  890. $npc_usedname['A<<npctemp>>'] = 'Masharin'
  891. $npc_notes['A<<npctemp>>'] = 'Artems father works at the Palace tourism office as their office administrator, head of their IT department. He meet his wife when they was both still in Secondary school in Pavlovsk and they started dating. They kept dating through college when they both attended the University in Saint Petersburg. After school Masharin go the job offer to work at the Palace tourism office in the IT department, so they moved back to Pavlovsk. Soon after Artem was born and they have had a happy and wonderful life. Now he and his wife and hoping Artem meets a nice girl and can have the same kind of experience they did.'
  892. npc_dob['A<<npctemp>>'] = 19690703
  893. npc_gender['A<<npctemp>>'] = 0
  894. gs 'npcstaticdefaults', 'defaults'
  895. npc_cyc['A<<npctemp>>'] = rand(0,29)
  896. $npc_lastpart['A<<npctemp>>'] = 'A238'
  897. $npc_thdick['A<<npctemp>>'] = 'well-proportioned'
  898. npc_dick['A<<npctemp>>'] = 15
  899. npc_sexskill['A<<npctemp>>'] = 1
  900. npctemp = 240
  901. $npc_dna['A<<npctemp>>'] = '6315098906 1018014534 6071786774 2270176358 8632551269 5000971274 7776119541'
  902. $npc_firstname['A<<npctemp>>'] = 'Natalia'
  903. $npc_nickname['A<<npctemp>>'] = 'Nat'
  904. $npc_lastname['A<<npctemp>>'] = 'Pavlova'
  905. $npc_usedname['A<<npctemp>>'] = 'Natalia'
  906. npc_dob['A<<npctemp>>'] = 20000330
  907. $npc_notes['A<<npctemp>>'] = 'Natalia is a very smart but weak willed girl. She constantly struggles to maintain friendships but her good looks and eagerness to help others, prevents her from being an outcast. She is rarely seen with anyone but one thing she always keeps with her, is a special notebook that she never lets anyone touch.'
  908. npc_gender['A<<npctemp>>'] = 1
  909. gs 'npcstaticdefaults', 'defaults'
  910. gs 'npcstaticdefaults', 'group', 'nerd'
  911. $npc_firstpart['A<<npctemp>>'] = 'V'
  912. $npc_lastpart['A<<npctemp>>'] = 'V'
  913. npc_bust['A<<npctemp>>'] = 22
  914. hotcat_rating['A<<npctemp>>'] = 6
  915. $npc_body['A<<npctemp>>'] = 's3'
  916. npctemp = 241
  917. $npc_dna['A<<npctemp>>'] = '3849823959 9265257275 0692991116 4439206638 9610596560 1214701298 1760538714'
  918. $npc_firstname['A<<npctemp>>'] = 'Alexandria'
  919. $npc_nickname['A<<npctemp>>'] = 'Alex'
  920. $npc_lastname['A<<npctemp>>'] = 'Line'
  921. $npc_usedname['A<<npctemp>>'] = 'Aleksei'
  922. npc_dob['A<<npctemp>>'] = 0
  923. $npc_notes['A<<npctemp>>'] = 'Chic who was a guy with stick up his ass.'
  924. npc_gender['A<<npctemp>>'] = 1
  925. gs 'npcstaticdefaults', 'defaults'
  926. $npc_firstpart['A<<npctemp>>'] = 'U'
  927. $npc_lastpart['A<<npctemp>>'] = 'U'
  928. npc_sexskill['A<<npctemp>>'] = 2
  929. !! {Keep this at the end of file of the npcstatics.}
  930. aarraynumber = npctemp
  931. --- DNA ---------------------------------