danceclass 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. # danceclass
  2. clr
  3. minut += 5
  4. gs 'stat'
  5. if night_mode = 1:
  6. fcolor = rgb(255, 255, 255)
  7. bcolor = rgb(0, 0, 0)
  8. lcolor = rgb(106, 90, 205)
  9. else
  10. fcolor = rgb(0, 0, 0)
  11. bcolor = rgb(255, 255, 255)
  12. lcolor = rgb(106, 90, 205)
  13. end
  14. '<center><b><font color="maroon">Dance Studio</font></b></center>'
  15. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/danceclass.jpg"></center>'
  16. 'A big, open room with good lighting and huge mirrors, perfect for developing dance skills.'
  17. act 'Modern dance class (0:30)':
  18. cla
  19. *clr
  20. timemult = 2
  21. loopcount = 1
  22. :timeloop
  23. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'danc_exp'
  24. if loopcount < timemult: loopcount += 1 & jump 'timeloop'
  25. loopcount = 0
  26. timemult = 0
  27. abonement -= 1
  28. '<center><img <<$set_imgh>> src="images/locations/shared/gym/fit1.jpg"></center>'
  29. if danc_lvl < 100:'You studied modern dance, which is very popular in clubs.'
  30. if danc_lvl >= 100:'Though you worked hard, you realize there is nothing more worth learning from this class.'
  31. act 'Leave':gt 'fit', 'dressing room'
  32. end
  33. act 'Striptease class (0:30)':
  34. cla
  35. *clr
  36. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'danc_exp', 'dancero_exp'
  37. abonement -= 1
  38. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/stripdance.jpg"></center>'
  39. if danc_lvl >= 50:
  40. gs 'exercise', 'tier2', 0, 'dancero_exp'
  41. 'You studied the art of burlesque, imaging yourself stripping to the music.'
  42. if pcs_dancero >= 100:'But there is nothing more worth learning, since you have already mastered the art.'
  43. else
  44. gs 'exercise', 'tier2', 0, 'danc_exp'
  45. '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.'
  46. end
  47. act 'Leave':gt 'fit', 'dressing room'
  48. end
  49. if pcs_stren >=40 or needstrength = 0:
  50. act 'Pole dancing class (0:30)':
  51. cla
  52. *clr
  53. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'dancpol_exp'
  54. abonement -= 1
  55. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/poledance.jpg"></center>'
  56. if dancero_lvl >= 50 and pcs_stren >= 40:
  57. gs 'exercise', 'tier2', 0, 'dancpol_exp'
  58. 'You studied various acrobatics on the pole.'
  59. if dancpol_lvl >= 100:'But you could not learn anything new, you''re already a master of the art.'
  60. else
  61. '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.'
  62. 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
  63. end
  64. act 'Leave':gt 'fit', 'dressing room'
  65. end
  66. end
  67. --- danceclass ---------------------------------