268_danceclass 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. # danceclass
  2. set minut += 5
  3. '<center><B><font color = maroon>Dance Class</font></B></center>'
  4. '<center><img src="images\etogame\danceclass.jpg"></center>'
  5. 'Modern room with good lighting and mirrors for the development of dance skills.'
  6. clr
  7. gs 'stat'
  8. fcolor = rgb(0,0,0)
  9. bcolor = rgb(255,255,255)
  10. LCOLOR = rgb(106,90,205)
  11. set razdtumbler = 0
  12. act 'Modern club dancing':
  13. cla
  14. *clr
  15. set minut += 120
  16. set fat -= 5
  17. speed+= RAND(1,3)
  18. set manna -= 5
  19. set 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','razd'
  25. end
  26. act 'Striptease':
  27. cla
  28. *clr
  29. set minut += 120
  30. set fat -= 5
  31. set agil+= RAND(1,3)
  32. set manna -= 8
  33. set 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. end
  41. if dance < 100:
  42. dance += RAND(5,15)
  43. 'Striptease for you too complicated, you can not perform the dance moves combining them strip. Teacher recommends that you first learn ordinary club dances.'
  44. end
  45. act 'Leave': gt 'fit','razd'
  46. end
  47. act 'Dancing on a pole':
  48. cla
  49. *clr
  50. set minut += 120
  51. set fat -= 10
  52. set stren+= RAND(1,3)
  53. vital += RAND(1,3)
  54. set manna -= 5
  55. set sweat += 3
  56. !poledance += 1
  57. '<center><img src="images\etogame\poledance.jpg"></center>'
  58. if dance >= 100 and stripdance >= 100 and stren >= 80:
  59. poledance += RAND(2,5)
  60. 'You studied various acrobatics on the pole.'
  61. if poledance >= 100: 'But you could not learn anything new, it´s all you have and know how well you know.'
  62. end
  63. if dance < 100 or stripdance < 100 or stren < 80:
  64. 'Already in the first exercise, you crashed with a pole. It seems this kind of dance you until the teeth'
  65. if stren < 80: 'The teacher explained that you dance on the pole, except the ability to dance, and still requires physical strength.'
  66. end
  67. act 'Leave': gt 'fit','razd'
  68. end
  69. --- danceclass ---------------------------------