danceclass.qsrc 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # danceclass
  2. clr
  3. minut += 5
  4. gs 'stat'
  5. gs 'themes', 'indoors'
  6. '<center><b><font color="maroon">Dance Studio</font></b></center>'
  7. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/danceclass.jpg"></center>'
  8. 'A big, open room with good lighting and huge mirrors, perfect for improving your dance skills.'
  9. act 'Modern dance class (0:30)':
  10. cla
  11. *clr
  12. timemult = 2
  13. loopcount = 1
  14. :timeloop
  15. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'danc_exp'
  16. if loopcount < timemult: loopcount += 1 & jump 'timeloop'
  17. loopcount = 0
  18. timemult = 0
  19. abonement -= 1
  20. if pcs_inhib < 40:inhib_exp += rand(1,2)
  21. '<center><img <<$set_imgh>> src="images/locations/shared/gym/fit1.jpg"></center>'
  22. if danc_lvl < 100:'You study modern dance, which is very popular in the clubs.'
  23. 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.'
  24. act 'Leave':gt 'fit', 'dressing room'
  25. end
  26. act 'Burlesque class (0:30)':
  27. cla
  28. *clr
  29. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'danc_exp', 'dancero_exp'
  30. abonement -= 1
  31. if pcs_inhib < 60:inhib_exp += rand(1,2)
  32. '<center><img <<$set_imgh>> src="images/characters/pavlovsk/school/girl/albina/stripdance.jpg"></center>'
  33. if danc_lvl >= 50:
  34. gs 'exercise', 'tier2', 0, 'dancero_exp'
  35. 'You study the art of burlesque, imaging yourself stripping to the music.'
  36. if pcs_dancero >= 100:'You''ve finally managed to master the art of burlesque, there is no need taking this class anymore.'
  37. else
  38. gs 'exercise', 'tier2', 0, 'danc_exp'
  39. '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.'
  40. end
  41. act 'Leave':gt 'fit', 'dressing room'
  42. end
  43. if pcs_stren >=40 or needstrength = 0:
  44. act 'Pole dance class (0:30)':
  45. cla
  46. *clr
  47. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren_exp', 'dancpol_exp'
  48. abonement -= 1
  49. if pcs_inhib < 60:inhib_exp += rand(1,2)
  50. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/poledance.jpg"></center>'
  51. if dancero_lvl >= 50 and pcs_stren >= 40:
  52. gs 'exercise', 'tier2', 0, 'dancpol_exp'
  53. 'You study various acrobatics on the pole.'
  54. if dancpol_lvl >= 100:'You''ve already mastered the art of pole dancing, there is nothing more left to teach you.'
  55. else
  56. '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.'
  57. 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
  58. end
  59. act 'Leave':gt 'fit', 'dressing room'
  60. end
  61. end
  62. --- danceclass ---------------------------------