1
0

danceclass.qsrc 2.9 KB

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