danceclass 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # danceclass
  2. clr
  3. minut += 5
  4. razdtumbler = 0
  5. gs 'stat'
  6. fcolor = rgb(0, 0, 0)
  7. bcolor = rgb(255, 255, 255)
  8. lcolor = rgb(106, 90, 205)
  9. '<center><b><font color="maroon">Dance Class</font></b></center>'
  10. '<center><img src="images/etogame/danceclass.jpg"></center>'
  11. 'Modern room with good lighting and mirrors for the development of dance skills.'
  12. act 'Modern club dancing (2:00)':
  13. cla
  14. *clr
  15. minut += 120
  16. fat -= 5
  17. speed+= rand(1, 3)
  18. manna -= 5
  19. sweat += 3
  20. dance += rand(5, 15)
  21. '<center><img src="images/etogame/fit1.jpg"></center>'
  22. if dance < 100:'You studied modern dance club, which is very popular in discos.'
  23. if dance >= 100:'Podcherpnut you tried something new in modern club dancing, but you all already know it.'
  24. act 'Leave':gt 'fit', 'dressing room'
  25. end
  26. act 'Striptease (2:00)':
  27. cla
  28. *clr
  29. minut += 120
  30. fat -= 5
  31. agil+= rand(1, 3)
  32. manna -= 8
  33. sweat += 3
  34. !!stripdance += 1
  35. '<center><img src="images/etogame/stripdance.jpg"></center>'
  36. if dance >= 100:
  37. stripdance += rand(2, 10)
  38. 'You studied passionately razdevatsya dance music.'
  39. if stripdance >= 100:'But you could not learn anything new, it''s all you have and know how well you know.'
  40. elseif dance < 100:
  41. dance += rand(5, 15)
  42. 'Striptease for you too complicated, you can not perform the dance moves combining them strip. Teacher recommends that you first learn ordinary club dances.'
  43. end
  44. act 'Leave':gt 'fit', 'dressing room'
  45. end
  46. act 'Dancing on a pole (2:00)':
  47. cla
  48. *clr
  49. minut += 120
  50. fat -= 10
  51. stren+= rand(1, 3)
  52. vital += rand(1, 3)
  53. manna -= 5
  54. sweat += 3
  55. !!poledance += 1
  56. '<center><img src="images/etogame/poledance.jpg"></center>'
  57. if dance >= 100 and stripdance >= 100 and stren >= 80:
  58. poledance += rand(2, 5)
  59. 'You studied various acrobatics on the pole.'
  60. if poledance >= 100:'But you could not learn anything new, it''s all you have and know how well you know.'
  61. elseif dance < 100 or stripdance < 100 or stren < 80:
  62. 'Already in the first exercise, you crashed with a pole. It seems this kind of dance you until the teeth'
  63. if stren < 80:'The teacher explained that you dance on the pole, except the ability to dance, and still requires physical strength.'
  64. end
  65. act 'Leave':gt 'fit', 'dressing room'
  66. end
  67. --- danceclass ---------------------------------