cardgame_durak 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734
  1. # cardgame_durak
  2. !-----------------------------------------------!
  3. !-----Playing cards with the guys on the strip-----!
  4. !===============================================!
  5. CLOSE ALL
  6. $card_game_durak = {
  7. cls
  8. minut += 5
  9. !count-in the clothing on the players
  10. card_game_durak_clothes = 5
  11. card_game_durak_npc_vasya = 4
  12. card_game_durak_npc_den = 4
  13. card_game_durak_npc_vitek = 4
  14. !choice of set pictures for you
  15. cgd_clothes_set = RAND(1,20)
  16. !zero out the loss NPC:
  17. cgd_loss_vasya = 0
  18. cgd_loss_den = 0
  19. cgd_loss_vitek = 0
  20. !zero out winnings NPC:
  21. cgd_win_vasya = 0
  22. cgd_win_den = 0
  23. cgd_win_vitek = 0
  24. gs'stat'
  25. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/durak.jpg"></center>'
  26. 'The boys said that they will play with you only on the strip + the loser does one desire to win.'
  27. 'Your game statistics: Win <<card_game_durak_win>>, defeats <<card_game_durak_loss>>, draws <<card_game_durak_draw>>, You undressed <<card_game_durak_nude>>'
  28. if playcardgame_count <= 0:'<br><<$rnd_rebyata>> said: - "What-already tired today, playing cards, Let`s look at a TV set or a beer popem."'
  29. if playcardgame_count > 0:
  30. act 'Play': dynamic $card_game_durak_play
  31. end
  32. act 'Escape': gt 'shulga_room'
  33. }
  34. !game
  35. $card_game_durak_play = {
  36. cls
  37. minut +=3
  38. gs'stat'
  39. !strip)
  40. if card_game_durak_clothes = 0:
  41. $cgd_clothes = '<font color=red><b>You naked</b></font>'
  42. elseif card_game_durak_clothes = 1:
  43. $cgd_clothes = 'You are now wearing: panties'
  44. elseif card_game_durak_clothes = 2:
  45. $cgd_clothes = 'You are now wearing: panties, bra'
  46. elseif card_game_durak_clothes = 3:
  47. $cgd_clothes = 'You are now wearing: panties, bra, skirt'
  48. elseif card_game_durak_clothes = 4:
  49. $cgd_clothes = 'You are now wearing: panties, bra, skirt, shirt'
  50. elseif card_game_durak_clothes = 5:
  51. $cgd_clothes = 'You are now wearing: panties, bra, skirt, shirt, socks'
  52. end
  53. if card_game_durak_npc_vasya = 0:
  54. $cgd_vasya_clothes = '<b>Vasya naked</b>'
  55. elseif card_game_durak_npc_vasya = 1:
  56. $cgd_vasya_clothes = 'On Vasya is now wearing: briefs'
  57. elseif card_game_durak_npc_vasya = 2:
  58. $cgd_vasya_clothes = 'On Vasya is now wearing: briefs, shorts'
  59. elseif card_game_durak_npc_vasya = 3:
  60. $cgd_vasya_clothes = 'On Vasya is now wearing: briefs, shorts, shirt'
  61. elseif card_game_durak_npc_vasya = 4:
  62. $cgd_vasya_clothes = 'On Vasya is now wearing: briefs, shorts, shirt, socks'
  63. end
  64. if card_game_durak_npc_den = 0:
  65. $cgd_den_clothes = '<b>Den naked</b>'
  66. elseif card_game_durak_npc_den = 1:
  67. $cgd_den_clothes = 'At Den is now wearing: briefs'
  68. elseif card_game_durak_npc_den = 2:
  69. $cgd_den_clothes = 'At Den is now wearing: briefs, Sports trousers'
  70. elseif card_game_durak_npc_den = 3:
  71. $cgd_den_clothes = 'At Den is now wearing: briefs, Sports trousers, sport jacket'
  72. elseif card_game_durak_npc_den = 4:
  73. $cgd_den_clothes = 'At Den is now wearing: briefs, Sports trousers, sport jacket, socks'
  74. end
  75. if card_game_durak_npc_vitek = 0:
  76. $cgd_vitek_clothes = '<b>Vitek naked</b>'
  77. elseif card_game_durak_npc_vitek = 1:
  78. $cgd_vitek_clothes = 'On Vitek is now wearing: briefs'
  79. elseif card_game_durak_npc_vitek = 2:
  80. $cgd_vitek_clothes = 'On Vitek is now wearing: briefs, jeans'
  81. elseif card_game_durak_npc_vitek = 3:
  82. $cgd_vitek_clothes = 'On Vitek is now wearing: briefs, jeans, shirt'
  83. elseif card_game_durak_npc_vitek = 4:
  84. $cgd_vitek_clothes = 'On Vitek is now wearing: briefs, jeans, shirt, socks'
  85. end
  86. !Pictures undressing
  87. if card_game_durak_clothes = 0:
  88. $cgd_clothes_set1 = '6'
  89. elseif card_game_durak_clothes = 1:
  90. $cgd_clothes_set1 = '5'
  91. elseif card_game_durak_clothes = 2:
  92. $cgd_clothes_set1 = '4'
  93. elseif card_game_durak_clothes = 3:
  94. $cgd_clothes_set1 = '3'
  95. elseif card_game_durak_clothes = 4:
  96. $cgd_clothes_set1 = '2'
  97. elseif card_game_durak_clothes = 5:
  98. $cgd_clothes_set1 = '1'
  99. end
  100. '<center><b>You play the fool on the strip. The game will continue until such time until somebody did not undress.</b></center>'
  101. '<table width="100%" cellspacing="0" cellpadding="5"><td width="200" valign="top"><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/<<cgd_clothes_set>>-<<$cgd_clothes_set1>>.jpg"></td><td valign="top">'
  102. '<<$cgd_clothes>>.
  103. <<$cgd_vasya_clothes>>.
  104. <<$cgd_den_clothes>>.
  105. <<$cgd_vitek_clothes>>.'
  106. if card_game_durak_clothes <= 0:
  107. card_game_durak_nude += 1
  108. playcardgame_day = daystart
  109. playcardgame_count -= 1
  110. rnd_cgd_win_npc = RAND(1,3)
  111. if rnd_cgd_win_npc = 1:
  112. $rnd_cgd_win_npc = 'Vasya'
  113. cgd_win_vasya = 1
  114. end
  115. if rnd_cgd_win_npc = 2:
  116. $rnd_cgd_win_npc = 'Den'
  117. cgd_win_den = 1
  118. end
  119. if rnd_cgd_win_npc = 3:
  120. $rnd_cgd_win_npc = 'Vitya'
  121. cgd_win_vitek = 1
  122. end
  123. '<b>Game over, you have no clothes left, you lost.</b>'
  124. 'Winner: <b><<$rnd_cgd_win_npc>>.</b>'
  125. 'You will carry out his wish.'
  126. if GorSlut < 3:
  127. act 'Further': dynamic $card_game_nosex
  128. end
  129. if GorSlut >=3 and cg_clother_cum < 5:
  130. if RAND(1,100) <= 90:
  131. if RAND(1,100) <= 40:
  132. act 'Further': dynamic $card_game_gsex
  133. else
  134. act 'Further': dynamic $card_game_rough_sex
  135. end
  136. else
  137. act 'Further': dynamic $card_game_nosex
  138. end
  139. end
  140. if GorSlut >=3 and cg_clother_cum >= 5:
  141. if RAND(1,100) <= 70:
  142. if RAND(1,100) <= 40:
  143. act 'Further': dynamic $card_game_gsex
  144. else
  145. act 'Further': dynamic $card_game_rough_sex
  146. end
  147. elseif RAND(1,30) > 10:
  148. act 'Further': dynamic $card_game_casual_sex
  149. else
  150. act 'Further': dynamic $card_game_nosex
  151. end
  152. end
  153. end
  154. if card_game_durak_npc_vasya <= 0 or card_game_durak_npc_den <= 0 or card_game_durak_npc_vitek <= 0:
  155. horny += 10
  156. health += 10
  157. manna += 5
  158. playcardgame_day = daystart
  159. playcardgame_count -= 1
  160. if card_game_durak_npc_vasya <= 0:
  161. $cgd_name_igrok = 'Vasily'
  162. cgd_loss_vasya = 1
  163. end
  164. if card_game_durak_npc_den <= 0:
  165. $cgd_name_igrok = 'Dan'
  166. cgd_loss_den = 1
  167. end
  168. if card_game_durak_npc_vitek <= 0:
  169. $cgd_name_igrok = 'Victor'
  170. cgd_loss_vitek = 1
  171. end
  172. ''
  173. '<b>Game over, <<$cgd_name_igrok>> is naked and has lost.</b>.'
  174. if GorSlut < 3:
  175. if RAND(1,100) <= 70:
  176. act 'Further': dynamic $card_game_ggwin_clother
  177. else
  178. act 'Further': dynamic $card_game_ggwin_penis
  179. end
  180. end
  181. if GorSlut >= 3:
  182. if RAND(1,100) <= 70:
  183. if RAND(1,100) <= 50:
  184. act 'Further': dynamic $card_game_ggwin_clothercum
  185. elseif RAND(1,50) < 40:
  186. act 'Further': dynamic $card_game_ggwin_clother
  187. else
  188. act 'Further': dynamic $card_game_ggwin_penis
  189. end
  190. else
  191. if RAND(1,100) <= 70:
  192. act 'Further': dynamic $card_game_gg_lick
  193. else
  194. act 'Further': dynamic $card_game_gg_sex
  195. end
  196. end
  197. end
  198. end
  199. if card_game_durak_clothes > 0 and card_game_durak_npc_vasya > 0 and card_game_durak_npc_den > 0 and card_game_durak_npc_vitek > 0:
  200. if RAND(1,100) <= 60:
  201. card_game_durak_win += 1
  202. horny += 5
  203. manna += 5
  204. rnd_card_game_npc = RAND(1,3)
  205. if RAND(1,3) = 1:
  206. card_game_durak_npc_vasya -= 1
  207. $cgd_name_npc = 'Vasily'
  208. elseif RAND(1,2) = 1:
  209. card_game_durak_npc_den -= 1
  210. $cgd_name_npc = 'Dan'
  211. else
  212. card_game_durak_npc_vitek -= 1
  213. $cgd_name_npc = 'Victor'
  214. end
  215. '<img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/card3.jpg">'
  216. 'Do you hold a good hand and you can easily win the game. <b><<$cgd_name_npc>> lost</b>.'
  217. act 'Deal': dynamic $card_game_durak_play
  218. elseif RAND(1,40) < 35:
  219. card_game_durak_loss += 1
  220. card_game_durak_clothes -= 1
  221. '<img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/card1.jpg">'
  222. 'You hold bad cards. <b>You lost</b>.'
  223. act 'Deal': dynamic $card_game_durak_play
  224. else
  225. card_game_durak_draw += 1
  226. '<img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/card1.jpg">'
  227. 'You hold poor cards, but with some skill manage to hold out for a draw.'
  228. act 'Deal': dynamic $card_game_durak_play
  229. end
  230. end
  231. '</td></tr></table>'
  232. }
  233. !--------------------------!
  234. !when years lost cards!
  235. !==========================!
  236. !fulfillment of desire NPC (turnip GorSlut < 3, then a small show)
  237. $card_game_nosex_dance = {
  238. cls
  239. minut +=5
  240. gs'stat'
  241. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/gif/dance'+rand(1,10)+'.gif"></center>'
  242. 'The guys put on some pop music and you throw some shapes.'
  243. '<<$gop_text_npcr>> watches you with interest.'
  244. act 'Escape': gt 'shulga_room'
  245. }
  246. !making wishes NPC (turnip GorSlut < 3)
  247. $card_game_nosex = {
  248. cls
  249. minut +=5
  250. gs'stat'
  251. card_game_texta = RAND(0,6)
  252. if card_game_texta = 0:$card_game_texta = 'I want you to suck me!'
  253. if card_game_texta = 1:$card_game_texta = 'Can you masturbate?'
  254. if card_game_texta = 2:$card_game_texta = 'Kiss my dick.'
  255. if card_game_texta = 3:$card_game_texta = 'Suck me off.'
  256. if card_game_texta = 4:$card_game_texta = 'I want to fuck you.'
  257. if card_game_texta = 5:$card_game_texta = 'I want to touch your pussy.'
  258. if card_game_texta = 6:$card_game_texta = 'Boob job!'
  259. if card_game_texta = 7:$card_game_texta = 'Let me touch your tits.'
  260. if cgd_win_vasya = 1:
  261. '<center><img src="images/zsoft/pod_ezd/shulgahome/vasya.jpg"></center>'
  262. '<<$shulga_name_rnd>> speaks: -"<<$card_game_texta>>"'
  263. '- "Ahuel not you tell me this offer?, I`m offended and I!", Roughly speaking, you.'
  264. '- "Okay not kipish, it was necessary to me you check, and suddenly agreed to.", smiling said Vasily.'
  265. '- "Let`s lips rolled up and simpler desire Offer!"'
  266. '<<$shulga_name_rnd>> long thought carefully offers: -"<<$gop_name_gg>>, can then simply povertishsya, potryasesh charms or well, there stantsuesh..."'
  267. 'You speak: -"Well, if all the same already naked, it`s possible..."'
  268. end
  269. if cgd_win_den = 1:
  270. '<center><img src="images/zsoft/pod_ezd/shulgahome/den.jpg"></center>'
  271. 'Dan says his desire: -"<<$card_game_texta>>"'
  272. '- "Ahuel not you tell me this offer?, I`m offended and I!", Roughly speaking, you.'
  273. '- "Okay not kipish, it was necessary to me you check, and suddenly agreed to.", He says Dan smiling.'
  274. '- "Let`s lips rolled up and simpler desire Offer!"'
  275. 'Denis is not long thinking offers: -"<<$gop_name_gg>>, Out of it, shake charms, Well there STATION..."'
  276. 'You speak: -"Well, if all the same already naked, it`s possible..."'
  277. end
  278. if cgd_win_vitek = 1:
  279. '<center><img src="images/zsoft/pod_ezd/shulgahome/vitek.jpg"></center>'
  280. 'Vitek said the desire: -"<<$card_game_texta>>"'
  281. '- "Ahuel not you tell me this offer?, I`m offended and I!", Roughly speaking, you.'
  282. '- "Okay not kipish, it was necessary to me you check, and suddenly agreed to.", smiling says Victor.'
  283. '- "Let`s lips rolled up and simpler desire Offer!"'
  284. 'Victor is not a long time thinking carefully offers: -"<<$gop_name_gg>>, can then simply povertishsya, potryasesh charms or well, there stantsuesh..."'
  285. 'You speak: -"Well, if all the same already naked, it can be..."'
  286. end
  287. act 'Dance': dynamic $card_game_nosex_dance
  288. }
  289. !when years lost cards (turnip GorSlut >= 3), sex
  290. $card_game_gsex = {
  291. cls
  292. minut +=2
  293. horny += 10
  294. if npcSex[10] = 0:npcSex[10] = 1 & guy += 1
  295. if npcSex[11] = 0:npcSex[11] = 1 & guy += 1
  296. if npcSex[9] = 0:npcSex[9] = 1 & guy += 1
  297. gs'stat'
  298. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_1.jpg"></center>'
  299. '-"Once lost, Then let`s get undressed, look, what can be done", He says with a grin <<$rnd_cgd_win_npc>>'
  300. act 'Further':
  301. cls
  302. minut += 3
  303. horny += 10
  304. gs'stat'
  305. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_2.jpg"></center>'
  306. '<<$rnd_cgd_win_npc>> speaks: -"I`ve thought about it and decided to, I would share your body with all the guys and we`ll fuck you good!"'
  307. '-"As well?, you win, and to fuck all?, how-It does not add up", with which-then you say a weak perturbation, still understanding, that vyebut.'
  308. '-"And this is my dear, I won, my desire, and you need not to talk, and perform!", stroking your chest says <<$rnd_cgd_win_npc>>.'
  309. act 'Further':
  310. cls
  311. minut += 10
  312. horny += 10
  313. bj +=1
  314. gs'stat'
  315. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_3.jpg"></center>'
  316. 'You lay on your back. <<$shulga_name_rnd>> and Dan went to close on the sides of your body and started to give your mouth, Vitek and is located between the legs.
  317. He immediately fell to burrow your lips and began to lick the clitoris. He then introduced his finger.
  318. You suck a thick head of Vaska, Dan and his hand jerked off. Then you moved your hands both members and began to fondle them simultaneously.
  319. Then he took two terms in the mouth so deep, as far as possible.
  320. And guys stroking your hair and breasts. It was something! You were so excited, We could not tolerate, and you really wanted to finish.'
  321. if horny >= 70:
  322. orgasm += 1
  323. horny = 0
  324. manna += 35
  325. mastr += 1
  326. 'To finish it take you a minute and a half. It was such a huge wave of orgasm, you moaned in a voice chat, in spite of the penis into the mouth.'
  327. 'You fought in convulsions, just not afraid to tear Vitka`s head, you squeezed his legs, he continued to lick you, until you have calmed down a little.'
  328. end
  329. act 'Further':
  330. cls
  331. minut += 10
  332. horny += 10
  333. sex += 1
  334. gs'stat'
  335. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_4.jpg"></center>'
  336. 'Then you turned on his stomach and put on her knees.
  337. And so, Dan became <<$gop_sextext1>> I have cancer, but this time you suck Shulga and Vitka.
  338. Do you like it when you <<$gop_sextext3>> behind. Therefore, you are very excited and moaning, I do not hesitate one, showing it.'
  339. act 'Further':
  340. cls
  341. minut += 10
  342. horny += 10
  343. gs'stat'
  344. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_5.jpg"></center>'
  345. 'First you tried simultaneously podmahivat booty and gently suck.
  346. But then Dan is no longer restrained and vigorously began to press your body to yourself. Your priest shuddered and flapped, when it hits the groin
  347. You are fully surrendered to him and so only had time to lick a member of the Victor, then Shulga.'
  348. act 'Further':
  349. cls
  350. minut += 10
  351. horny += 20
  352. throat += 1
  353. gs'stat'
  354. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_6.jpg"></center>'
  355. 'Dan hands clenched cheeks and you force your head planted on his dick because, you rested his nose in his hairy scrotum. From surprise you coughing. Convulsively swallowing, zahripev, twitched in all directions, trying to break free.
  356. He pulled out a member of your mouth. You gasped, but you do not inhale given, right there in the vacant throat he puts his penis Vitek. You, choking, hiccupped, sobbing, like a child. Vitka felt sorry for you, and he loosened pressure.
  357. You rate this, gratefully looked him in the eye, become, smacking carefully handle <<$liptalk>> head and tongue.
  358. Without stopping to jump on a limb Shulga, only increasing the pace, We tried to sit down faster and deeper.'
  359. if horny >= 70:
  360. orgasm += 1
  361. horny = 0
  362. manna += 35
  363. 'You groaned aloud. Your face broke into a pained-the sweet grimace. Shaking his head from side to side, You looked around half-closed, unseeing eyes.
  364. you <<$gop_sextext2>> more than an hour, and you are the first time in the evening was ending.'
  365. end
  366. act 'Further':
  367. cls
  368. minut += 5
  369. spafinloc = 12
  370. gs 'cum_manage'
  371. spafinloc = 11
  372. gs 'cum_manage'
  373. facial += 1
  374. gs'stat'
  375. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/gsex/ev1_7.jpg"></center>'
  376. 'You put on the floor and surrounded with different sides, boys began to pour cum on your face.
  377. You were so long, without giving any signs of life. Then stir, rose heavily and, He came to the couch, flopped on him, stretching her legs.
  378. What do you look-the detachment. uncombed <<$hair2>>. Looking Away. Face, wreathed smeared makeup mixed with sperm.'
  379. act 'Escape': gt 'shulga_room'
  380. end
  381. end
  382. end
  383. end
  384. end
  385. end
  386. }
  387. !when years lost cards (turnip GorSlut >= 3), rough sex
  388. $card_game_rough_sex = {
  389. cls
  390. minut += 5
  391. bj += 1
  392. throat += 1
  393. horny += 5
  394. sub += 1
  395. if npcSex[10] = 0:npcSex[10] = 1 & guy += 1
  396. if npcSex[11] = 0:npcSex[11] = 1 & guy += 1
  397. if npcSex[9] = 0:npcSex[9] = 1 & guy += 1
  398. gs'stat'
  399. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sexrough/bj'+rand(1,10)+'.gif"></center>'
  400. '<<$rnd_cgd_win_npc>> unceremoniously, I ran up to you and prisunul his dick in your mouth.'
  401. '-"This is for all you damn garbage", I mumbled <<$rnd_cgd_win_npc>> and grab your head with your arms, I began to hammer away your hard-throat.'
  402. act 'Further':
  403. cls
  404. minut +=10
  405. anal += 1
  406. spafinloc = 3
  407. gs 'cum_manage'
  408. horny += 10
  409. gs'stat'
  410. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sexrough/sex1_'+rand(1,10)+'.gif"></center>'
  411. '-"Quickly I got cancer promiscuous bitch, your ass will develop", said <<$rnd_cgd_win_npc>>'
  412. 'You obeyed'
  413. if analplugin = 1:
  414. analplugin = 0
  415. '<<$rnd_cgd_win_npc>> said: -"It does not need you now", and with a loud chpok pulled out of ass plug.'
  416. end
  417. if lubri > 0:
  418. agape = 2
  419. agapetime = totminut
  420. horny += 10
  421. 'You are asked to get out of your handbag lubricant and lubricate the ass, but <<$rnd_cgd_win_npc>> with said slostyu:'
  422. '-"You are my thing, fuck how I want, and I want to dry, realized blyadina!?"'
  423. 'You will only remain as humbly point to relax'
  424. end
  425. 'He brazenly stuck your dick in the ass and tore up your hole is not the jelly of his forces.'
  426. 'You were hurt, but you obediently endured a couple of minutes and a member of the free entrance, without causing discomfort.'
  427. 'After finishing you in the ass <<$rnd_cgd_win_npc>> He said with a grin: -"Next, the hollow of our slut need to develop specific!"'
  428. act 'Further':
  429. cls
  430. minut +=20
  431. horny += 10
  432. guy += 2
  433. gang +=1
  434. spafinloc = 7
  435. gs 'cum_manage'
  436. spafinloc = 4
  437. gs 'cum_manage'
  438. gs'stat'
  439. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sexrough/sex2_'+rand(1,10)+'.gif"></center>'
  440. 'You understand your position, you <<$rnd_cgd_win_npc>> how fucked 50 ruble whore, but you are so damn them, what can I resent.'
  441. 'For this you stood humbly cancer, relaxed and waited for a point "next".'
  442. 'Guys use the rear hole davalki their turns as they wanted, paying no attention to your feelings.'
  443. if horny >=70:
  444. orgasm += 1
  445. horny = 0
  446. manna += 35
  447. mastr +=1
  448. 'You pussy flowed from, that you do not ask, just rude <<$gop_sextext3>> lithe body as they want, Bud-then you are not a living person, a rubber doll.'
  449. 'You greatly excited the role of the litter and you lowered yourself rubbing pussy hand, We managed to finish a couple of times for all the time until your body <<$gop_sextext2>> turns guys.'
  450. end
  451. 'Then they wanted, look at your designed hollow.'
  452. act 'Show':
  453. cls
  454. minut +=5
  455. gs'stat'
  456. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sexrough/ass'+rand(1,11)+'.jpg"></center>'
  457. 'The boys watched a few minutes and discuss how they have developed good your hole'
  458. 'Then you were allowed to go to the bathroom, freshen up.'
  459. act 'Escape': gt 'shulgahome', 'bath'
  460. end
  461. end
  462. end
  463. }
  464. $card_game_casual_sex = {
  465. cls
  466. minut +=5
  467. sub += 1
  468. gs'stat'
  469. '-"All <<$gop_name_gg>> lost, now you will be answerable for all the garbage that you invented us", speaks <<$rnd_cgd_win_npc>>'''
  470. '-"Come guessing, anyway but to fuck me you have more desires can not be", snidely say you.'
  471. '-"But you`re wrong!, my desire is: Now you go out on the street, We`ll find you something of an unknown man, and given it to him right there!"'
  472. '-"Whore, and if you do not ahuel hour?, I suggested that you do not fuck anyone or..."'
  473. '-"You`re still the same damn, garbage all we invented, Now rap, and indeed what you`re here for me vyebyvaeshsya go Accomplish!"'
  474. 'You had no choice, have to go to fulfill.'
  475. act 'Further':
  476. cls
  477. minut +=10
  478. horny += 5
  479. guy += 1
  480. bj +=1
  481. gs'stat'
  482. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/street_event/sexbj1.gif" width="642" height="490"></center>'
  483. 'The boys pointed out to that guy. You came up to him, offered to have sex and not strange, he quickly agreed...'
  484. 'You will quickly find secluded, the man took out his dick and said,, that from the beginning it is necessary to suck. You squatted and took the dick in your mouth.'
  485. '-"Great suck, It seems often practicing?", He asks you a man.'
  486. '-"Yes, every day", honestly you answer.'
  487. '-"Damn good I got today, Become let cancer", commanded by a man.'
  488. act 'Further':
  489. cls
  490. minut +=10
  491. horny += 15
  492. sex += 1
  493. gs'stat'
  494. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/street_event/sex1.gif" width="570" height="576"></center>'
  495. 'You got cancer came up against the wall, a man fell in behind and start from the beginning is not fast, then speeding up the pace <<$gop_sextext1>> you'
  496. '-"And you fuck the same every day?", he asks accelerating pace.'
  497. 'Do you understand, that it give birth to these talks and decided to play along: -"Yes, every day I use my body, almost everyone who popodya, I davalka yard, passage do not give, fuck several times a day"'
  498. if horny >=70:
  499. orgasm += 1
  500. horny = 0
  501. manna += 25
  502. mastr +=1
  503. 'The abundance of surging emotions you with a loud groan finished.'
  504. 'The guy did not expect, and with a grin said,: -"Ends like a machine gun, I like these nymphomaniac. Can you leave your telefonchik?"'
  505. '-"Everything can be, Let`s Stop faster", You answer with a smirk.'
  506. end
  507. 'A few minutes later a man pulls a dick, He pulls a condom and ends on the wall. You pulled shorts running away, a man even did not have time to blink an eye.'
  508. 'The boys all the time was not far away and shoot everything on a mobile phone.'
  509. act 'Escape': gt 'shulga_room'
  510. end
  511. end
  512. }
  513. !-------------------!
  514. !gg won cards!
  515. !===================!
  516. !When the years won, make a wish (turnip GorSlut < 3) (clothing stall)
  517. $card_game_ggwin_clother = {
  518. cls
  519. minut +=3
  520. gs'stat'
  521. if cgd_loss_vasya = 1:
  522. $loss_npc_name = 'Bob'
  523. $loss_npc_name2 = 'Vasily'
  524. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/vasya.jpg"></center>'
  525. elseif cgd_loss_den = 1:
  526. $loss_npc_name = 'Dan'
  527. $loss_npc_name2 = 'Dan'
  528. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/den.jpg"></center>'
  529. elseif cgd_loss_vitek = 1:
  530. $loss_npc_name = 'Cats'
  531. $loss_npc_name2 = 'Vitek'
  532. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/vitek.jpg"></center>'
  533. end
  534. '<<$loss_npc_img>>'
  535. 'You grin on his lips say: -"<<$loss_npc_name>> You blew today, Now you will carry out my desire!"'
  536. '-"You start it with NARRATION, but we`ll see", speaks <<$loss_npc_name>>'
  537. 'You voiced their desire: -"So so, go to the street, you will find a beautiful girl and you pick it from the top or bottom part of the dress!, and we all zasnimem to mobile!"'
  538. '<<$loss_npc_name>> Frustrated says: -"Nihuya you desire, but by simply could not think of anything?"'
  539. 'The boys did not give you a personal reply, desire kid liked and popular explained <<$loss_npc_name2>>, card debt that must be fulfilled.'
  540. act 'Further':
  541. cls
  542. minut +=15
  543. gs'stat'
  544. '<center>The loser had to fulfill your desire.</center>'
  545. '<<$loss_npc_name2>> We show the guys that have done on your mobile phone:'
  546. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/street_event/j'+RAND(1,12)+'.gif"></center>'
  547. '-"And then the camera shakes so, even normally can not remove!?", a frustrated asked <<$loss_npc_name>>'
  548. 'The boys responded: -"You`re five minutes out there stalking his prey, all did not dare to attack, or waiting for the right moment, fuck you know. But we just do not drop dead with laughter while watching, this and the camera shaking.'
  549. act 'Escape': gt 'shulga_room'
  550. end
  551. }
  552. !When the years won, make a wish (turnip GorSlut < 3) (shake genitals)
  553. $card_game_ggwin_penis = {
  554. cls
  555. minut +=5
  556. gs'stat'
  557. if cgd_loss_vasya = 1:
  558. $loss_npc_name = 'Bob'
  559. $loss_npc_name2 = 'Vasily'
  560. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/vasya.jpg"></center>'
  561. elseif cgd_loss_den = 1:
  562. $loss_npc_name = 'Dan'
  563. $loss_npc_name2 = 'Dan'
  564. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/den.jpg"></center>'
  565. elseif cgd_loss_vitek = 1:
  566. $loss_npc_name = 'Cats'
  567. $loss_npc_name2 = 'Vitek'
  568. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/vitek.jpg"></center>'
  569. end
  570. '<<$loss_npc_img>>'
  571. 'You grin on his lips say: -"<<$loss_npc_name>> You blew, Now you will carry out my desire!"'
  572. '-"You start it with NARRATION, but we`ll see", speaks <<$loss_npc_name>>'
  573. 'You voiced their desire: -"So so, you will need to run to some sort of a girl in front of her and twist her pussy!, and we all zasnimem to mobile!"'
  574. '<<$loss_npc_name>> Frustrated says: -"Nihuya you desire, but by simply could not think of anything?"'
  575. 'The boys did not give you a personal reply, desire kid liked and popular explained <<$loss_npc_name2>>, card debt that must be fulfilled.'
  576. act 'Further':
  577. cls
  578. minut +=15
  579. gs'stat'
  580. '<center>The loser had to fulfill your desire.</center>'
  581. '<<$loss_npc_name2>> We show the guys that have done on your mobile phone:'
  582. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/street_event/p'+RAND(1,3)+'.gif"></center>'
  583. '-"And then the camera shakes so, normally can not remove!?", a frustrated asked <<$loss_npc_name>>'
  584. 'The boys responded: -"You`re there so defiantly twisted his genitals in front of Baba, that we`re just laughing are dead is not observed, this and the camera shaking.'
  585. act 'Escape': gt 'shulga_room'
  586. end
  587. }
  588. !When the years won, make a wish (turnip GorSlut > 3) (cum on the victim)
  589. $card_game_ggwin_clothercum = {
  590. cls
  591. minut +=5
  592. cg_clother_cum +=1
  593. gs'stat'
  594. if cgd_loss_vasya = 1:
  595. $loss_npc_name = 'Bob'
  596. $loss_npc_name2 = 'Vasily'
  597. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/vasya.jpg"></center>'
  598. elseif cgd_loss_den = 1:
  599. $loss_npc_name = 'Dan'
  600. $loss_npc_name2 = 'Dan'
  601. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/den.jpg"></center>'
  602. elseif cgd_loss_vitek = 1:
  603. $loss_npc_name = 'Vitya'
  604. $loss_npc_name2 = 'Vitek'
  605. $loss_npc_img = '<center><img src="images/zsoft/pod_ezd/shulgahome/vitek.jpg"></center>'
  606. end
  607. '<<$loss_npc_img>>'
  608. 'You barely-simmer, say: -"<<$loss_npc_name>> you lose nothing, ahah, my desire is not easy!"'
  609. '-"Let`s not Tom, voiced, time lost to fulfill", said <<$loss_npc_name>>'
  610. 'You voiced their desire: -"Let`s go all the street, we`ll find you a nice sacrifice, and you`ll have to run up and finish it, and we all zasnimem to mobile!"'
  611. '<<$loss_npc_name>> already ahuel: -"Pizdec! <<$nickname>> You are friends with the head? and generally how you represent yourself, Do you think I`m here so I can finish in a second?"'
  612. '-"<<$loss_npc_name>>, Do not worry you so, I thought of everything, help your Elephant finish", licking <<$liptalk3>>, you say.'
  613. 'Guys neighing, but the desire they liked and you hop in unison throughout the company went into the street to look for the victim.'
  614. act 'Further':
  615. cls
  616. minut +=10
  617. horny += 5
  618. bj +=1
  619. gs'stat'
  620. 'You`re all together for about five minutes looking for the victim. Then a couple of minutes looking for a quiet place, both found quickly and skillfully began to suck dick <<$loss_npc_name2>>'
  621. 'Guys acne and went commenting filmed on camera:'
  622. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/street_event/bj'+RAND(1,2)+'.gif"></center>'
  623. 'When <<$loss_npc_name>> he was about to finish, He ran to the victim.'
  624. act 'Further':
  625. cls
  626. minut +=5
  627. gs'stat'
  628. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/street_event/cum'+RAND(1,2)+'.gif"></center>'
  629. 'The boys did not stop to shoot everything to mobile.'
  630. 'But because of your comments and vulgar jokes, quality turned lousy, as all could not help but laugh and operator MOBILE shaking hands.'
  631. 'Returning red as a lobster <<$loss_npc_name>> said: -"<<$nickname>> the next time you lose, fuck you so, that would be more of these stupid and ridiculous desire in your brain did not arise!"'
  632. 'You guys and neighing loudly.'
  633. act 'Escape': gt 'shulga_room'
  634. end
  635. end
  636. }
  637. !When the years won, make a wish (turnip GorSlut >= 3), lick
  638. $card_game_gg_lick = {
  639. cls
  640. minut +=1
  641. gs'stat'
  642. if cgd_loss_vasya = 1:
  643. $lick_name_npc = 'Vasya'
  644. '<center><img src="images/zsoft/pod_ezd/shulgahome/vasya.jpg"></center>'
  645. 'You voice your desire, "I want you to lick my pussy"'
  646. 'Vaska did not want to fulfill that desire, But the guys liked it and Vasily kicks sent him to perform.'
  647. elseif cgd_loss_den = 1:
  648. $lick_name_npc = 'Dan'
  649. '<center><img src="images/zsoft/pod_ezd/shulgahome/den.jpg"></center>'
  650. 'You voice your desire, "You must lick my pussy"'
  651. 'Dan did not want to fulfill this wish, but again lost, it is necessary to perform.'
  652. elseif cgd_loss_vitek = 1:
  653. $lick_name_npc = 'Vitek'
  654. '<center><img src="images/zsoft/pod_ezd/shulgahome/vitek.jpg"></center>'
  655. 'You voice your desire, "Lick my pussy"'
  656. 'Vitek gladly began to fulfill that desire.'
  657. end
  658. act 'Further':
  659. cls
  660. horny += 15
  661. minut +=10
  662. gs'stat'
  663. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/lick'+rand(1,6)+'.jpg"></center>'
  664. 'Minutes 10 I worked <<$lick_name_npc>>, I am trying to bring you to orgasm.'
  665. if horny >= 70:
  666. orgasm += 1
  667. horny = 0
  668. 'The abundance of surging emotions you with a loud groan finished.'
  669. elseif horny < 70:
  670. '<<$lick_name_npc>> like doing things right, you excited, But the end you can not.'
  671. end
  672. act 'Escape': gt 'shulga_room'
  673. end
  674. }
  675. !When the years won, make a wish (turnip GorSlut >= 3), sex
  676. $card_game_gg_sex = {
  677. cls
  678. minut +=1
  679. gs'stat'
  680. if cgd_loss_vasya = 1:
  681. $lick_name_npc = 'Vasya'
  682. '<center><img src="images/zsoft/pod_ezd/shulgahome/vasya.jpg"></center>'
  683. 'You voice your desire, "I want you to fuck me thoroughly!"'
  684. 'Vaska`s eyes lit up, he liked your desire, grab you by the arm dragged him to the couch.'
  685. elseif cgd_loss_den = 1:
  686. $lick_name_npc = 'Dan'
  687. '<center><img src="images/zsoft/pod_ezd/shulgahome/den.jpg"></center>'
  688. 'You voice your desire, "Well fuck me"'
  689. '-"That I can", Dan responds with joy and begins to undress you'
  690. elseif cgd_loss_vitek = 1:
  691. $lick_name_npc = 'Vitek'
  692. '<center><img src="images/zsoft/pod_ezd/shulgahome/vitek.jpg"></center>'
  693. 'You voice your desire, "Fuck me properly"'
  694. 'Witek grabbed you by the arm and dragged her to the bed.'
  695. end
  696. act 'Further':
  697. cls
  698. horny += 15
  699. minut += 10
  700. sex += 1
  701. gs'stat'
  702. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/sex'+rand(1,7)+'.jpg"></center>'
  703. 'Without any sentimentality <<$lick_name_npc>> You straightened and took a measured <<$gop_sextext1>>.'
  704. dynamic $gg_sex_orgasm
  705. act 'Further':
  706. cls
  707. minut += 5
  708. spafinloc = 14
  709. gs 'cum_manage'
  710. spafinloc = 7
  711. gs 'cum_manage'
  712. gs'stat'
  713. '<center><img src="images/zsoft/pod_ezd/shulgahome/bigroom/card/sex/cum'+rand(1,6)+'.jpg"></center>'
  714. 'For a long time he could not tolerate, and ended on you'
  715. act 'Escape': gt 'shulga_room'
  716. end
  717. end
  718. }
  719. --- cardgame_durak ---------------------------------