danceclass 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 Studio</font></b></center>'
  10. '<center><img src="images/etogame/danceclass.jpg"></center>'
  11. 'A big, open room with good lighting and huge mirrors, perfect for developing dance skills.'
  12. act 'Modern dance class (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, which is very popular in clubs.'
  23. if dance >= 100:'Though you worked hard, you realize there is nothing more worth learning from this class.'
  24. act 'Leave':gt 'fit', 'dressing room'
  25. end
  26. act 'Striptease class (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 the art of burlesque, imaging yourself stripping to the music.'
  39. if stripdance >= 100:'But there is nothing more worth learning, since you have already mastered the art.'
  40. elseif dance < 100:
  41. dance += rand(5, 15)
  42. 'This isn''t just taking clothes off, it''s a difficult dance style and your basics aren''t upto the task. The teacher recommends that you work on your modern dancing first.'
  43. end
  44. act 'Leave':gt 'fit', 'dressing room'
  45. end
  46. act 'Pole dancing class (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, you''re already a master of the art.'
  61. elseif dance < 100 or stripdance < 100 or stren < 80:
  62. 'It''s not pretty and you bang your head on the pole, you realize you are out of your league. It will help if you improve your modern dancing or striptease first.'
  63. if stren < 80:'The instructor tries to be patient, but it is clear that you are too weak for this sort of dance.'
  64. end
  65. act 'Leave':gt 'fit', 'dressing room'
  66. end
  67. --- danceclass ---------------------------------