danceclass 2.9 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 improving your 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 study modern dance, which is very popular in the clubs.'
  30. if danc_lvl >= 100:'The day has finally come, you''ve been working hard, and you realize that you''ve learned everything you can from this class.'
  31. act 'Leave':gt 'fit', 'dressing room'
  32. end
  33. act 'Burlesque 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 study the art of burlesque, imaging yourself stripping to the music.'
  42. if pcs_dancero >= 100:'You''ve finally managed to master the art of burlesque, there is no need taking this class anymore.'
  43. else
  44. gs 'exercise', 'tier2', 0, 'danc_exp'
  45. 'This class isn''t just about taking your clothes off, it''s a difficult dance style and your basics aren''t sufficent. Instead, the teacher helps you with your basic modern dance steps.'
  46. end
  47. act 'Leave':gt 'fit', 'dressing room'
  48. end
  49. if pcs_stren >=40 or needstrength = 0:
  50. act 'Pole dance 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 study various acrobatics on the pole.'
  59. if dancpol_lvl >= 100:'You''ve already mastered the art of pole dancing, there is nothing more left to teach you.'
  60. else
  61. 'It doesn''t look sensual enough and you bang your head pretty hard on the pole. This is far harder than it looks. It would help if you improved your modern dancing skills or the burlesque one, but you did learn a little.'
  62. if pcs_stren < 40:'The instructor tries to be patient with you, 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 ---------------------------------