danceclass.qsrc 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. if pcs_energy >= 10:
  11. act 'Modern dance class (0:30)':
  12. *clr & cla
  13. gs 'exercise', 'tier2', 30, 'agil', 'stren', 'danc'
  14. abonement -= 1
  15. if pcs_inhib < 40:inhib_exp += rand(1,2)
  16. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/moderndance.jpg"></center>'
  17. if pcs_danc < 100:'You study modern dance, which is very popular in the clubs.'
  18. 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.'
  19. act 'Leave':gt 'fit', 'dressing room'
  20. end
  21. act 'Burlesque class (0:30)':
  22. *clr & cla
  23. gs 'exercise', 'tier2', 0, 'agil', 'stren', 'danc', 'dancero'
  24. abonement -= 1
  25. if pcs_inhib < 60:inhib_exp += rand(1,2)
  26. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/burlesque.jpg"></center>'
  27. if pcs_danc >= 50:
  28. gs 'exercise', 'tier2', 0, 'dancero'
  29. 'You study the art of burlesque, imaging yourself stripping to the music.'
  30. if pcs_dancero >= 100:'You''ve finally managed to master the art of burlesque, there is no need taking this class anymore.'
  31. else
  32. gs 'exercise', 'tier2', 0, 'danc'
  33. '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.'
  34. end
  35. act 'Leave':gt 'fit', 'dressing room'
  36. end
  37. if pcs_stren >=40 or needstrength = 0:
  38. act 'Pole dance class (0:30)':
  39. *clr & cla
  40. gs 'exercise', 'tier2', 0, 'agil_exp', 'stren', 'dancpol'
  41. abonement -= 1
  42. if pcs_inhib < 60:inhib_exp += rand(1,2)
  43. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/poledance.jpg"></center>'
  44. if pcs_dancero >= 50 and pcs_stren >= 40:
  45. gs 'exercise', 'tier2', 0, 'dancpol'
  46. 'You study various acrobatics on the pole.'
  47. if pcs_dancpol >= 100:'You''ve already mastered the art of pole dancing, there is nothing more left to teach you.'
  48. else
  49. '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.'
  50. 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
  51. end
  52. act 'Leave':gt 'fit', 'dressing room'
  53. end
  54. else
  55. act 'Modern dance class (0:30)': '<br><font color="red">You don''t have enough energy to use this action.</font>'
  56. act 'Burlesque class (0:30)': '<br><font color="red">You don''t have enough energy to use this action.</font>'
  57. if pcs_stren >=40 or needstrength = 0:
  58. act 'Pole dance class (0:30)': '<br><font color="red">You don''t have enough energy to use this action.</font>'
  59. end
  60. end
  61. else
  62. *nl
  63. 'You are so hungry you can''t even bring yourself to look at the activities available'
  64. end
  65. act 'Leave':gt 'fit', 'dressing room'
  66. --- danceclass ---------------------------------