danceclass 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. # danceclass
  2. clr
  3. minut += 5
  4. razdtumbler = 0
  5. gs 'stat'
  6. if night_mode = 1:
  7. fcolor = rgb(255, 255, 255)
  8. bcolor = rgb(0, 0, 0)
  9. lcolor = rgb(106, 90, 205)
  10. else
  11. fcolor = rgb(0, 0, 0)
  12. bcolor = rgb(255, 255, 255)
  13. lcolor = rgb(106, 90, 205)
  14. end
  15. '<center><b><font color="maroon">Dance Studio</font></b></center>'
  16. '<center><img src="images/locations/city/citycenter/gym/dance/danceclass.jpg"></center>'
  17. 'A big, open room with good lighting and huge mirrors, perfect for developing dance skills.'
  18. act 'Modern dance class (0:30)':
  19. cla
  20. *clr
  21. timemult = 2
  22. loopcount = 1
  23. :timeloop
  24. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'danc_exp'
  25. if loopcount < timemult: loopcount += 1 & jump 'timeloop'
  26. loopcount = 0
  27. timemult = 0
  28. abonement -= 1
  29. '<center><img src="images/locations/shared/gym/fit1.jpg"></center>'
  30. if danc_lvl < 100:'You studied modern dance, which is very popular in clubs.'
  31. if danc_lvl >= 100:'Though you worked hard, you realize there is nothing more worth learning from this class.'
  32. act 'Leave':gt 'fit', 'dressing room'
  33. end
  34. act 'Striptease class (0:30)':
  35. cla
  36. *clr
  37. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'danc_exp', 'dancero_exp'
  38. abonement -= 1
  39. '<center><img src="images/characters/pavlovsk/school/girl/albina/stripdance.jpg"></center>'
  40. if danc_lvl >= 50:
  41. gs 'exercise', 'tier2', 0, 'dancero_exp'
  42. 'You studied the art of burlesque, imaging yourself stripping to the music.'
  43. if pcs_dancero >= 100:'But there is nothing more worth learning, since you have already mastered the art.'
  44. else
  45. gs 'exercise', 'tier2', 0, 'danc_exp'
  46. 'This isn''t just taking clothes off, it''s a difficult dance style and your basics aren''t upto the task. The teacher instead helps you work on your modern dancing.'
  47. end
  48. act 'Leave':gt 'fit', 'dressing room'
  49. end
  50. if pcs_stren >=40 or needstrength = 0:
  51. act 'Pole dancing class (0:30)':
  52. cla
  53. *clr
  54. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'dancpol_exp'
  55. abonement -= 1
  56. '<center><img src="images/locations/city/citycenter/gym/dance/poledance.jpg"></center>'
  57. if dancero_lvl >= 50 and pcs_stren >= 40:
  58. gs 'exercise', 'tier2', 0, 'dancpol_exp'
  59. 'You studied various acrobatics on the pole.'
  60. if dancpol_lvl >= 100:'But you could not learn anything new, you''re already a master of the art.'
  61. else
  62. 'It''s not pretty and you bang your head on the pole. This is far harder than it looks. It will help if you improve your modern dancing or striptease but you did learn a little.'
  63. if pcs_stren < 40:'The instructor tries to be patient, but it is clear that you are too weak for this sort of dance.' & needstrength = 1
  64. end
  65. act 'Leave':gt 'fit', 'dressing room'
  66. end
  67. end
  68. --- danceclass ---------------------------------