beg1.qsrc 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442
  1. # beg1
  2. if $ARGS[0] = 'start':
  3. cla
  4. *clr
  5. clr
  6. gs 'stat'
  7. minut += 60
  8. kolsorev += 1
  9. razdtumbler = 0
  10. begmon = month
  11. begminus = 0
  12. if razradbeg = 0:
  13. 'You''re registered for a beginner''s race.'
  14. act 'Go to the stadium':gt 'beg1', 'br'
  15. elseif razradbeg = 1:
  16. 'You''re registered for a club ranking race.'
  17. act 'Go to the stadium':gt 'beg1', '3'
  18. elseif razradbeg = 2:
  19. 'You''re registered as your club''s representative at the Saint Petersburg City Championship.'
  20. act 'Go to the stadium':gt 'beg1', '2'
  21. elseif razradbeg = 3:
  22. 'You qualified as Saint Petersburg''s representative at the Leningrad Oblast Championship, held in Saint Petersburg.'
  23. act 'Go to the stadium':gt 'beg1', '1'
  24. elseif razradbeg = 4:
  25. 'You qualified for the Northwest District Championship, held in Saint Petersburg, representing the Leningrad Oblast.'
  26. act 'Go to the stadium':gt 'beg1', 'kms'
  27. elseif razradbeg = 5:
  28. 'You are one of the best track athletes in Russia and thus qualified for the Russian National Championship.'
  29. act 'Go to the stadium':gt 'beg1', 'ross'
  30. elseif razradbeg >= 6 and razradbeg < 16:
  31. 'As one of the best Russian athletes, you can take part in a series of international qualifying races. Winning seven out of nine would qualify you for the European and World Championships, but even if you could no longer qualify, the prize money is nothing to sneeze at.'
  32. nl
  33. 'Qualifying Races Attended: <<razradbeg - 6>>'
  34. 'Qualifying Races Won: <<razradbegK>>'
  35. act 'Go to the stadium':gt 'beg1', 'kval'
  36. elseif razradbeg = 16:
  37. if razradbegK < 7:
  38. cla
  39. razradbegK = 0
  40. razradbeg = 6
  41. 'You were unable to qualify for the European Championship.'
  42. ! WD: Argument is 'dressing room'
  43. act 'Go back to the dressing room':gt 'fit', 'dressing room'
  44. elseif razradbegK >= 7:
  45. cla
  46. razradbegK = 0
  47. razradbegInt = 1
  48. 'You qualified for the <<year>> European Championship in Athletics, held in Saint Petersburg.'
  49. act 'Go to the stadium':gt 'beg1', 'evro'
  50. end
  51. elseif razradbegInt = 1:
  52. cla
  53. razradbegInt = 0
  54. razradbeg = 6
  55. 'You qualified for the <<year>> World Championship in Athletics, held in Saint Petersburg.'
  56. act 'Go to the stadium':gt 'beg1', 'Int'
  57. end
  58. end
  59. if $ARGS[0] = 'br':
  60. cla
  61. run_exp += 1
  62. fat -= 2
  63. pcs_sweat += 30
  64. pcs_stam -= 30
  65. if salo > 40: begminus = ((salo - 35)/5)
  66. begresult = pcs_run - begminus
  67. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  68. 'Your discipline: The Women''s 400 Meter Dash.'
  69. 'After changing into your running gear, you spend some time warming up in the empty stadium before the race starts.'
  70. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  71. 'You get in position. Then, you hear the starting shot: The race begins!'
  72. if begresult <= 18:
  73. 'Sadly, you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made a bit of a fool of yourself.'
  74. elseif begresult <= 23:
  75. 'You performed well for an amateur but still only came in last (8th place).'
  76. elseif begresult < 19:
  77. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  78. elseif begresult < 20:
  79. 'You fought hard, but managed to only take the penultimate place (7th place).'
  80. elseif begresult < 21:
  81. 'You fought hard, but only managed to take 6th place.'
  82. elseif begresult < 22:
  83. 'You fought hard, but only managed to take 5th place.'
  84. elseif begresult < 23:
  85. 'You fought hard, but only managed to take 4th place.'
  86. elseif begresult < 24:
  87. bronzebeg += 1 & money += 100 & 'You fought hard and managed to take 3rd place, earning a prize: You receive a bronze bade and a prize of 100 <b>₽</b>'
  88. elseif begresult < 25:
  89. silverbeg += 1 & money += 500 & 'You fought hard and managed to take 2nd place, earning a prize: You receive a silver badge and a prize of 500 <b>₽</b>'
  90. elseif begresult >= 25:
  91. razradbeg = 1 & goldbeg += 1 & money += 1000 & 'You fought hard and managed to take 1st place! You receive a gold badge, a prize of 1, 000 <b>₽</b> and are now part of your club''s junior squad.'
  92. end
  93. act 'Leave':gt 'fit', 'dressing room'
  94. end
  95. if $ARGS[0] = '3':
  96. cla
  97. run_exp += 1
  98. fat -= 2
  99. pcs_sweat += 30
  100. pcs_stam -= 30
  101. if salo > 40: begminus = ((salo - 35)/5)
  102. begresult = pcs_run - begminus
  103. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  104. 'Your discipline: The Women''s 400 Meter Dash.'
  105. 'After changing into your running gear, you spend some time warming up in the empty stadium before the race starts.'
  106. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  107. 'You get in position. Then, you hear the starting shot: The race begins!'
  108. if begresult <= 18:
  109. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made a bit of a fool of yourself.'
  110. elseif begresult < 26:
  111. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  112. elseif begresult < 27:
  113. 'You fought hard, but managed to only take the penultimate place (7th place).'
  114. elseif begresult < 28:
  115. 'You fought hard, but only managed to take 6th place.'
  116. elseif begresult < 29:
  117. 'You fought hard, but only managed to take 5th place.'
  118. elseif begresult < 30:
  119. 'You fought hard, but only managed to take 4th place.'
  120. elseif begresult < 31:
  121. bronzebeg += 1 & money += 500 & 'You fought hard and managed to take 3rd place, earning a prize: You receive a bronze badge and a prize of 500 <b>₽</b>'
  122. elseif begresult < 32:
  123. silverbeg += 1 & money += 1000 & 'You fought hard and managed to take 2nd place, earning a prize: You reveice a silver badge and a prize of 1, 000 <b>₽</b>'
  124. elseif begresult >= 32:
  125. razradbeg = 2 & goldbeg += 1 & money += 2000 & 'You fought hard and managed to take 1st place! You receive a gold badge, a prize of 2, 000 <b>₽</b> and are now part of your club''s senior squad, representing it at the next city championship!'
  126. end
  127. act 'Leave':gt 'fit', 'dressing room'
  128. end
  129. if $ARGS[0] = '2':
  130. cla
  131. run_exp += 1
  132. fat -= 2
  133. pcs_sweat += 30
  134. pcs_stam -= 30
  135. if salo > 40: begminus = ((salo - 35)/5)
  136. begresult = pcs_run - begminus
  137. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  138. 'Your discipline: The Women''s 400 Meter Dash.'
  139. 'After changing into your running gear, you spend some time warming up in the stadium before the race starts, only a hundred people or so on the ranks watching you but with how big the stadium is, you can barely even see them.'
  140. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  141. 'You get in position. Then, you hear the starting shot: The race begins!'
  142. if begresult <= 18:
  143. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made a bit of a fool of yourself.'
  144. elseif begresult < 33:
  145. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  146. elseif begresult < 34:
  147. 'You fought hard, but managed to only take the penultimate place (7th place).'
  148. elseif begresult < 35:
  149. 'You fought hard, but only managed to take 6th place.'
  150. elseif begresult < 36:
  151. 'You fought hard, but only managed to take 5th place.'
  152. elseif begresult < 37:
  153. 'You fought hard, but only managed to take 4th place.'
  154. elseif begresult < 38:
  155. bronzebeg += 1 & money += 1000 & 'You fought hard and managed to take 3rd place, earning a prize: You get a bronze medal and a prize of 1, 000 <b>₽</b>'
  156. elseif begresult < 39:
  157. silverbeg += 1 & money += 2000 & 'You fought hard and managed to take 2nd place, earning a prize: You get a silver medal and a prize of 2, 000 <b>₽</b>'
  158. elseif begresult >= 39:
  159. razradbeg = 3 & goldbeg += 1 & money += 3000 & 'You fought hard and managed to take 1st place! You get a gold medal, a prize of 3000 <b>₽</b> and became the "Track Champion of the City of Saint Petersburg", which qualifies you for the next oblast championship!'
  160. end
  161. act 'Leave':gt 'fit', 'dressing room'
  162. end
  163. if $ARGS[0] = '1':
  164. cla
  165. run_exp += 1
  166. fat -= 2
  167. pcs_sweat += 30
  168. pcs_stam -= 30
  169. if salo > 40: begminus = ((salo - 35)/5)
  170. begresult = pcs_run - begminus
  171. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  172. 'Your discipline: The Women''s 400 Meter Dash.'
  173. 'After changing into your running gear, you spend some time warming up in the stadium before the race starts.'
  174. 'Only 1,000 people came to watch the city championship, spread out over the large stadium.'
  175. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  176. 'You get in position. Then, you hear the starting shot: The race begins!'
  177. if begresult <= 18:
  178. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made of a fool of yourself. People on the ranks seem to be asking themselves how you even managed to make it this far. Maybe they are right?'
  179. elseif begresult < 40:
  180. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  181. elseif begresult < 41:
  182. 'You fought hard, but managed to only take the penultimate place (7th place).'
  183. elseif begresult < 42:
  184. 'You fought hard, but only managed to take 6th place.'
  185. elseif begresult < 43:
  186. 'You fought hard, but only managed to take 5th place.'
  187. elseif begresult < 44:
  188. 'You fought hard, but only managed to take 4th place.'
  189. elseif begresult < 45:
  190. bronzebeg += 1 & money += 2000 & 'You fought hard and managed to take 3rd place, earning a prize: You get a bronze medal and a prize of 2, 000 <b>₽</b>'
  191. elseif begresult < 46:
  192. silverbeg += 1 & money += 3000 & 'You fought hard and managed to take 2nd place, earning a prize: You get a silver medal and a prize of 3, 000 <b>₽</b>'
  193. elseif begresult >= 46:
  194. razradbeg = 4 & goldbeg += 1 & money += 4000 & 'You fought hard and managed to take 1st place! You get a gold medal, a prize of 4000 <b>₽</b> and became the "Track Champion of the Leningrad Oblast", not only putting you on the list of the 50 best track athletes in the Russian Federation but also qualifying you for the next district championship!'
  195. end
  196. act 'Leave':gt 'fit', 'dressing room'
  197. end
  198. if $ARGS[0] = 'kms':
  199. cla
  200. run_exp += 1
  201. fat -= 2
  202. pcs_sweat += 30
  203. pcs_stam -= 30
  204. if salo > 40: begminus = ((salo - 35)/5)
  205. begresult = pcs_run - begminus
  206. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  207. 'Your discipline: The Women''s 400 Meter Dash.'
  208. 'After changing into your running gear, you spend some time warming up in the stadium before the race starts.'
  209. 'Maybe 5,000 people came to watch the district championship, the stadium far from full.'
  210. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  211. 'You get in position. Then, you hear the starting shot: The race begins!'
  212. if begresult <= 18:
  213. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made of a fool of yourself. People on the ranks seem to be asking themselves how you even managed to make it this far. Maybe they are right?'
  214. elseif begresult < 47:
  215. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  216. elseif begresult < 48:
  217. 'You fought hard, but managed to only take the penultimate place (7th place).'
  218. elseif begresult < 49:
  219. 'You fought hard, but only managed to take 6th place.'
  220. elseif begresult < 50:
  221. 'You fought hard, but only managed to take 5th place.'
  222. elseif begresult < 51:
  223. 'You fought hard, but only managed to take 4th place.'
  224. elseif begresult < 52:
  225. bronzebeg += 1 & money += 3000 & 'You fought hard and managed to take 3rd place, earning a prize: You get a bronze medal and a prize of 3, 000 <b>₽</b>'
  226. elseif begresult < 53:
  227. silverbeg += 1 & money += 4000 & 'You fought hard and managed to take 2nd place, earning a prize: You get a silver medal and a prize of 4, 000 <b>₽</b>'
  228. elseif begresult >= 53:
  229. razradbeg = 5 & goldbeg += 1 & money += 5000 & 'You fought hard and managed to take 1st place! You get a gold medal, a prize of 5000 <b>₽</b> and became the "Track Champion of the Northwest District". You are now one of the 8 best track athletes in the Russian Federation and qualified for the next national championship!'
  230. end
  231. act 'Leave':gt 'fit', 'dressing room'
  232. end
  233. if $ARGS[0] = 'ross':
  234. cla
  235. run_exp += 1
  236. fat -= 2
  237. pcs_sweat += 30
  238. pcs_stam -= 30
  239. if salo > 40: begminus = ((salo - 35)/5)
  240. begresult = pcs_run - begminus
  241. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  242. 'Your discipline: The Women''s 400 Meter Dash.'
  243. 'After changing into your running gear, you spend some time warming up in the stadium before the race starts.'
  244. 'At least 30,000 people came to national championship, putting the stadium at a little less than half capacity.'
  245. !! Took the Krestovsky Stadium for reference.
  246. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  247. 'You get in position. Then, you hear the starting shot: The race begins!'
  248. if begresult <= 18:
  249. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made of a fool of yourself. People on the ranks seem to be asking themselves how you even managed to make it this far. Maybe they are right?'
  250. elseif begresult < 54:
  251. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  252. elseif begresult < 55:
  253. 'You fought hard, but managed to only take the penultimate place (7th place).'
  254. elseif begresult < 56:
  255. 'You fought hard, but only managed to take 6th place.'
  256. elseif begresult < 57:
  257. 'You fought hard, but only managed to take 5th place.'
  258. elseif begresult < 58:
  259. 'You fought hard, but only managed to take 4th place.'
  260. elseif begresult < 59:
  261. bronzebeg += 1 & money += 4000 & 'You fought hard and managed to take 3rd place, earning a prize: You get a bronze medal and a prize of 4, 000 <b>₽</b>'
  262. elseif begresult < 60:
  263. silverbeg += 1 & money += 5000 & 'You fought hard and managed to take 2nd place, earning a prize: You get a silver medal and a prize of 5, 000 <b>₽</b>'
  264. elseif begresult >= 60:
  265. razradbeg = 6 & goldbeg += 1 & money += 6000 & 'You fought hard and managed to take 1st place! You get a gold medal, a prize of 6000 <b>₽</b> and became the "Track Champion of the Russian Federation". You are the single best track athlete in Russia - maybe you should try to qualify for the European championship?'
  266. end
  267. act 'Leave':gt 'fit', 'dressing room'
  268. end
  269. if $ARGS[0] = 'kval':
  270. cla
  271. run_exp += 1
  272. fat -= 2
  273. pcs_sweat += 30
  274. pcs_stam -= 30
  275. razradbeg += 1
  276. if salo > 40: begminus = ((salo - 35)/5)
  277. begresult = pcs_run - begminus
  278. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  279. 'Your discipline: The Women''s 400 Meter Dash.'
  280. 'After changing into your running gear, you spend some time warming up in the empty stadium before the race starts.'
  281. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  282. 'You get in position. Then, you hear the starting shot: The race begins!'
  283. if begresult <= 18:
  284. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made of a fool of yourself.'
  285. elseif begresult < 61:
  286. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  287. elseif begresult < 62:
  288. 'You fought hard, but managed to only take the penultimate place (7th place).'
  289. elseif begresult < 63:
  290. 'You fought hard, but only managed to take 6th place.'
  291. elseif begresult < 64:
  292. 'You fought hard, but only managed to take 5th place.'
  293. elseif begresult < 65:
  294. 'You fought hard, but only managed to take 4th place.'
  295. elseif begresult < 66:
  296. razradbegK += 1 & bronzebeg += 1 & money += 5000 & 'You fought hard and managed to take 3rd place, earning a prize. You get a bronze badge and a prize of 5,000 <b>₽</b>, but sadly, only the 1st place adds to your qualification for the European championship.'
  297. elseif begresult < 67:
  298. razradbegK += 1 & silverbeg += 1 & money += 10000 & 'You fought hard and managed to take 2nd place, earning a prize. You get a silver medal and a prize of 10,000 <b>₽</b>, but sadly, only the 1st place adds to your qualification for the European championship.'
  299. elseif begresult >= 67:
  300. razradbegK += 1 & goldbeg += 1 & money += 15000 & 'You fought hard and managed to take 1st place! You get a gold medal, a prize of 15,000 <b>₽</b> and are one step closer to qualifying for the European championship.'
  301. end
  302. act 'Leave':gt 'fit', 'dressing room'
  303. end
  304. if $ARGS[0] = 'evro':
  305. cla
  306. run_exp += 1
  307. fat -= 2
  308. pcs_sweat += 30
  309. pcs_stam -= 30
  310. razradbeg += 1
  311. if salo > 40: begminus = ((salo - 35)/5)
  312. begresult = pcs_run - begminus
  313. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/race/begsor.jpg"></center>'
  314. 'Your discipline: The Women''s 400 Meter Dash.'
  315. 'After changing into your running gear, you spend some time warming up in the stadium before the race starts.'
  316. 'The stadium is well-attended - about 50,000 people, you''d wager - here to watch athletics competitions between the best European athletes, you one of them.'
  317. !! Took the Krestovsky Stadium for reference.
  318. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  319. 'You get in position. Then, you hear the starting shot: The race begins!'
  320. if begresult <= 16:
  321. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made of a fool of yourself. People on the ranks seem to be asking themselves how you even managed to make it this far. Maybe they are right?'
  322. elseif begresult < 68:
  323. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  324. elseif begresult < 70:
  325. 'You fought hard, but managed to only take the penultimate place (7th place).'
  326. elseif begresult < 72:
  327. 'You fought hard, but only managed to take 6th place.'
  328. elseif begresult < 74:
  329. 'You fought hard, but only managed to take 5th place.'
  330. elseif begresult < 76:
  331. 'You fought hard, but only managed to take 4th place.'
  332. elseif begresult < 78:
  333. razradbegEB += 1
  334. money += 10000
  335. 'You fought hard and managed to take 3rd place, earning a prize. You get a bronze medal and a prize of 10,000 <b>₽</b>'
  336. elseif begresult < 80:
  337. razradbegES += 1
  338. money += 15000
  339. 'You fought hard and managed to take 2nd place, earning a prize. You get a silver medal and a prize of 15,000 <b>₽</b>'
  340. elseif begresult >= 80:
  341. razradbegEG += 1
  342. money += 20000
  343. 'You fought hard and managed to take 1st place. You get a gold medal, a prize of 20,000 <b>₽</b> and are now the "European Track Champion"!'
  344. end
  345. act 'Leave':gt 'fit', 'dressing room'
  346. end
  347. if $ARGS[0] = 'Int':
  348. cla
  349. run_exp += 1
  350. fat -= 2
  351. pcs_sweat += 30
  352. pcs_stam -= 30
  353. razradbeg += 1
  354. if salo > 40: begminus = ((salo - 35)/5)
  355. begresult = pcs_run - begminus
  356. 'Your discipline: The Women''s 400 Meter Dash.'
  357. 'After changing into your running gear, you spend some time warming up in the stadium before the race starts.'
  358. 'The stadium is full, almost bursting with people. There must be 70,000 people here to watch athletics competitions with competitors from all over the world. Only the best of the best even made it here and you are proud to be one of them.'
  359. !! Took the Krestovsky Stadium for reference.
  360. 'When you and the other runners are called, you walk to your starting position, tense but ready.'
  361. 'You get in position. Then, you hear the starting shot: The race begins!'
  362. if begresult < 18:
  363. 'But you barely managed to reach the finish line, walking the last 100 meters. Of course, you came in last - but you also made of a fool of yourself. People on the ranks seem to be asking themselves how you even managed to make it this far. Maybe they are right?'
  364. elseif begresult < 82:
  365. 'You fought hard but still have a lot of work ahead of you if you want to be better than your competition. You only came in last (8th place).'
  366. elseif begresult < 85:
  367. 'You fought hard, but managed to only take the penultimate place (7th place).'
  368. elseif begresult < 88:
  369. 'You fought hard, but only managed to take 6th place.'
  370. elseif begresult < 91:
  371. 'You fought hard, but only managed to take 5th place.'
  372. elseif begresult < 94:
  373. 'You fought hard, but only managed to take 4th place.'
  374. elseif begresult < 97:
  375. razradbegIB += 1
  376. money += 30000
  377. 'You fought hard and managed to take 3rd place, earning a prize. You get a bronze medal and a prize of 30,000 <b>₽</b>'
  378. elseif begresult < 100:
  379. razradbegIS += 1
  380. money += 50000
  381. 'You fought hard and managed to take 2nd place, earning a prize. You get a silver medal and a prize of 50,000 <b>₽</b>'
  382. elseif begresult >= 100:
  383. razradbegIG += 1
  384. money += 100000
  385. 'You fought hard and managed to take 1st place. You get a gold medal, a prize of 100,000 <b>₽</b> and the title "World Track Champion" - YOU are the fastest woman alive!'
  386. end
  387. act 'Leave':gt 'fit', 'dressing room'
  388. end
  389. --- beg1 ---------------------------------