lab 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  1. # lab
  2. if $ARGS[0] = 'start':
  3. cla
  4. clr
  5. *clr
  6. CLOSE ALL
  7. if sound = 0:PLAY 'sound/street.mp3',30
  8. minut += 5
  9. gs 'stat'
  10. fcolor = rgb(0, 0, 0)
  11. bcolor = rgb(255, 255, 255)
  12. lcolor = rgb(106, 90, 205)
  13. '<center><b><font color="maroon">Karinas'' Laboratory</font></b></center>'
  14. '<center><img src="images/qwest/lab.JPG"></center>'
  15. act 'Leave':
  16. cla
  17. minut += 5
  18. gt 'down'
  19. end
  20. act 'Train with Juugo':
  21. cla
  22. gt 'lab', 'jugo'
  23. end
  24. act 'Train with Karin':
  25. cla
  26. gt 'lab', 'karin'
  27. end
  28. if judosparday ! daystart:
  29. act 'Sparring (Juugo, mutant power 600)':
  30. cla
  31. judosparday = daystart
  32. $boy = 'Juugo'
  33. !!stats
  34. strenV = 600
  35. speedV = 60
  36. agilV = 60
  37. reactV = 50
  38. vitalV = 200
  39. intelV = 50
  40. willV = 50
  41. !!skills
  42. magikV = 100
  43. boxingV = 100
  44. shootV = 100
  45. !!parameters
  46. healthV = vitalV * 10 + strenV * 5
  47. mannaV = intelV * 10 + magikV * 10
  48. willpowerV = willV * 10
  49. BonusAtakV = 0
  50. BonusDefV = 0
  51. !!Programme of Action
  52. program = 0
  53. jugoFight = 2
  54. gt 'fight', 'start'
  55. end
  56. end
  57. if karinsparday ! daystart:
  58. act 'Sparring (Karin, magician6)':
  59. cla
  60. karinsparday = daystart
  61. $boy = 'Karin'
  62. !!stats
  63. strenV = 60
  64. speedV = 100
  65. agilV = 100
  66. reactV = 60
  67. vitalV = 100
  68. intelV = 100
  69. willV = 100
  70. !!skills
  71. magikV = 100
  72. boxingV = 100
  73. shootV = 100
  74. !!parameters
  75. healthV = vitalV * 10 + strenV * 5
  76. mannaV = intelV * 6 + magikV * 10
  77. willpowerV = willV * 10
  78. BonusAtakV = 0
  79. BonusDefV = 0
  80. !!Programme of Action
  81. program = 4
  82. karinFight = 1
  83. gt 'fight', 'start'
  84. end
  85. end
  86. end
  87. if $ARGS[0] = 'jugo':
  88. cla
  89. clr
  90. *clr
  91. minut += 5
  92. gs 'stat'
  93. fcolor = rgb(0, 0, 0)
  94. bcolor = rgb(255, 255, 255)
  95. lcolor = rgb(106, 90, 205)
  96. '<center><b><font color="maroon">Juugo</font></b></center>'
  97. '<center><img src="images/picPRE/jugoPRE.jpg"></center>'
  98. 'Juugo is sitting on floor and staring off into space.'
  99. act 'Leave':gt 'lab', 'start'
  100. if jugoday ! daystart:
  101. act 'Develop strength (1:00)':
  102. cla
  103. stren += rand(3, 6)
  104. minut += 60
  105. jugoday = daystart
  106. 'You do exercises under the guidance of Juugo.'
  107. act 'Leave':gt 'lab', 'jugo'
  108. end
  109. act 'Develop speed (1:00)':
  110. cla
  111. speed += rand(3, 6)
  112. minut += 60
  113. jugoday = daystart
  114. 'You do exercises under the guidance of Juugo.'
  115. act 'Leave':gt 'lab', 'jugo'
  116. end
  117. act 'Develop agility (1:00)':
  118. cla
  119. agil += rand(3, 6)
  120. minut += 60
  121. jugoday = daystart
  122. 'You do exercises under the guidance of Juugo.'
  123. act 'Leave':gt 'lab', 'jugo'
  124. end
  125. act 'Develop reactions (1:00)':
  126. cla
  127. react += rand(3, 6)
  128. minut += 60
  129. jugoday = daystart
  130. 'You do exercises under the guidance of Juugo.'
  131. act 'Leave':gt 'lab', 'jugo'
  132. end
  133. act 'Develop endurance (1:00)':
  134. cla
  135. vital += rand(3, 6)
  136. minut += 60
  137. jugoday = daystart
  138. 'You do exercises under the guidance of Juugo.'
  139. act 'Leave':gt 'lab', 'jugo'
  140. end
  141. end
  142. end
  143. if $ARGS[0] = 'karin':
  144. cla
  145. clr
  146. *clr
  147. minut += 5
  148. gs 'stat'
  149. fcolor = rgb(0, 0, 0)
  150. bcolor = rgb(255, 255, 255)
  151. lcolor = rgb(106, 90, 205)
  152. '<center><b><font color="maroon">Karina</font></b></center>'
  153. '<center><img src="images/picPRE/karinPRE.jpg"></center>'
  154. 'Karyn as always studying something.'
  155. act 'Leave':gt 'lab', 'start'
  156. act 'I''m too fat and do not want to get fat.':
  157. cla
  158. '(You) - Karin, I oily dibilka not able to watch their weight, wave your magic wand, what would not I grew fat.'
  159. '(Karin) - Ugh, that''s the same ponavylazyat downs of pussy, and then I vozis with them. Dick with you, take it. Just remember, this spell forever, you''ll be able to just come and change the waist and thighs, and since boobs are made of fat, I only supreme mercy 1st size you do, a little, shoved silicone. And the decision to reverse is or whether silicone doll or live as a man, I raskoldovyvat you will not. Since you have more fat will not be absorbed and body parameters are kept magically, marvel not at the post of dystrophy and not marvel that force will fall faster from malnutrition, you will no longer internal reserves.'
  160. act 'No no no, I changed my mind. Will continue smarter.':gt 'lab', 'karin'
  161. act 'I would want that waist was ...':
  162. cla
  163. dounspell = 1
  164. TaliaDoun = input ("Waist in cm?")
  165. if TaliaDoun <= 0:TaliaDoun = 20
  166. act 'I would want that thighs ...':
  167. cla
  168. bedraDoun = input ("Hips in cm?")
  169. if bedraDoun <= 0:bedraDoun = 40
  170. act 'Enjoy your stupidity.':gt 'lab', 'karin'
  171. end
  172. end
  173. end
  174. if IvanPodstavaQW = 2 and poverKAR = 0 and softKAR = 0:
  175. act 'Ask for help with Ivan Karin':
  176. cla
  177. gs 'stat'
  178. 'You explained the situation and asked her to Karin assistance. Karin said thoughtfully. "I do not think there is any physical evidence of the guilt of Ivan. Necessary is achieved recognition. I think it would be possible to capture and interrogate. Or drink his cunning truth serum and interrogate. Anyway it is necessary to remove it all on video."'
  179. act 'Military solution':
  180. cls
  181. poverKAR = 1
  182. gs 'stat'
  183. '<center><img src="images/picPRE/karinPRE.jpg"></center>'
  184. 'You have decided to achieve recognition Ivan force. Karin told you. You go to the apartment of Ivan. There vstretishsya with Juugo. It will help resolve the issue. Just see if he will go to the second level of the press, he was distraught. At the second level of the press he turns into a monster.'
  185. act 'Leave':gt 'lab', 'karin'
  186. end
  187. act 'Tricky decision':
  188. cls
  189. softKAR = 1
  190. gs 'stat'
  191. '<center><img src="images/picPRE/karinPRE.jpg"></center>'
  192. 'You have decided to achieve recognition Ivan cunning. Karin told you. You go to the apartment of Ivan. There we meet with you and obtyapaem owners.'
  193. act 'Leave':gt 'lab', 'karin'
  194. end
  195. end
  196. elseif poverKAR = 2:
  197. act 'Approach to Karin about attacks apartments Ivan':
  198. cla
  199. poverKAR = 3
  200. 'You came to Karin and she sighed. "Yes, failed. Juugo caught a bullet in his head and his strength went up to the next level, it has cured, made almost invulnerable, but finally deprived of his mind. Juugo not only gained recognition for Ivan, and not just kill him, he blew part of the entrance his attack. But there are pluses. Cops think it was a gas explosion. But now you have to either pay the debt or goes to jail. "'
  201. act 'Leave':gt 'lab', 'karin'
  202. end
  203. end
  204. if karinday ! daystart:
  205. act 'Develop intelligence (1:00)':
  206. cla
  207. intel += rand(3, 6)
  208. minut += 60
  209. karinday = daystart
  210. 'You study with Karin developing your intellect.'
  211. act 'Leave':gt 'lab', 'karin'
  212. end
  213. act 'Will develop (1:00)':
  214. cla
  215. will += rand(3, 6)
  216. minut += 60
  217. karinday = daystart
  218. 'You meditate with Karin developing your willpower.'
  219. act 'Leave':gt 'lab', 'karin'
  220. end
  221. end
  222. if spelltuman = 0 and magik >= 1:
  223. act 'Learn technique fog (1:00)':
  224. cla
  225. minut += 60
  226. spelltuman = 1
  227. 'You learnt the technique of calling fog in battle.'
  228. act 'Leave':gt 'lab', 'karin'
  229. end
  230. end
  231. if spellklon = 0 and magik >= 1:
  232. act 'Learn technique protection cloning (1:00)':
  233. cla
  234. minut += 60
  235. spellklon = 1
  236. 'You learnt the technique of cloning yourself to create decoys in battle.'
  237. act 'Leave':gt 'lab', 'karin'
  238. end
  239. end
  240. if spellstun = 0 and magik >= 2:
  241. act 'Learn technique paralysis (1:00)':
  242. cla
  243. minut += 60
  244. spellstun = 1
  245. 'You learnt the technique of paralyzing the enemy.'
  246. act 'Leave':gt 'lab', 'karin'
  247. end
  248. end
  249. if spellwind = 0 and magik >= 2:
  250. act 'Learn mist blowing (1:00)':
  251. cla
  252. minut += 60
  253. spellwind = 1
  254. 'You learnt the technique of blowing mist.'
  255. act 'Leave':gt 'lab', 'karin'
  256. end
  257. end
  258. if spellklon2 = 0 and magik >= 2:
  259. act 'Learn triple cloning (1:00)':
  260. cla
  261. minut += 60
  262. spellklon2 = 1
  263. 'You learnt the technique triple cloning.'
  264. act 'Leave':gt 'lab', 'karin'
  265. end
  266. end
  267. if spellenergo = 0 and magik >= 3:
  268. act 'Learn energoschit (1:00)':
  269. cla
  270. minut += 60
  271. spellenergo = 1
  272. 'You learnt the technique energoschita.'
  273. act 'Leave':gt 'lab', 'karin'
  274. end
  275. end
  276. if spellinit = 0 and magik >= 3:
  277. act 'Learn technique deceleration time (1:00)':
  278. cla
  279. minut += 60
  280. spellinit = 1
  281. 'You learnt the technique of time dilation.'
  282. act 'Leave':gt 'lab', 'karin'
  283. end
  284. end
  285. if magik >= 4 and spellhel = 0:
  286. !!'With this level of magic I can not teach you anymore.'
  287. act 'Learn the technique of treatment (1:00)':
  288. cla
  289. minut += 60
  290. spellhel = 1
  291. 'You learnt the technique of treatment.'
  292. act 'Leave':gt 'lab', 'karin'
  293. end
  294. end
  295. if magik >= 5 and spellavtoklon = 0:
  296. act 'Learn technique preparation (1:00)':
  297. cla
  298. minut += 60
  299. spellavtoklon = 1
  300. 'You learnt the technique preparation. This technique allows you to enter into battle with the already created three clones.'
  301. act 'Leave':gt 'lab', 'karin'
  302. end
  303. end
  304. if magik >= 6 and spellbefshild = 0:
  305. act 'Learn technique pre-shield (1:00)':
  306. cla
  307. minut += 60
  308. spellbefshild = 1
  309. 'You learned the technique of pre-shield. This technique allows you to enter into battle with a magical shield protecting you against physical impacts.'
  310. act 'Leave':gt 'lab', 'karin'
  311. end
  312. end
  313. end
  314. --- lab ---------------------------------