1
0

havana_dance.qsrc 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # havana_dance
  2. menu_off = 1
  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. if pcs_energy < 10:
  10. *nl
  11. 'You are so hungry you can''t even bring yourself to look at the activities available.'
  12. elseif pcs_stam < stammax / 5:
  13. *nl
  14. 'You are to exhausted you can''t even bring yourself to look at the activities available. Recover your stamina before trying to dance.'
  15. else
  16. act 'Modern dance class (0:30)':
  17. *clr & cla
  18. gs 'exercise', 'tier2', 30, 'agil', 'stren', 'danc'
  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:
  23. 'You study modern dance, which is very popular in the clubs.'
  24. else
  25. 'The day has finally come, you''ve been working hard, and you realize that you''ve learned everything you can from this class.'
  26. end
  27. act 'Leave': gt 'havana', 'dressing_room'
  28. end
  29. act 'Burlesque class (0:30)':
  30. *clr & cla
  31. gs 'exercise', 'tier2', 15, 'agil', 'stren', 'danc', 'dancero'
  32. abonement -= 1
  33. if pcs_inhib < 60: inhib_exp += rand(1, 2)
  34. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/burlesque.jpg"></center>'
  35. if pcs_danc < 50:
  36. gs 'exercise', 'tier2', 15, 'danc'
  37. '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.'
  38. else
  39. gs 'exercise', 'tier2', 15, 'dancero'
  40. 'You study the art of burlesque, imaging yourself stripping to the music.'
  41. if pcs_dancero >= 100: 'You''ve finally managed to master the art of burlesque, there is no need taking this class anymore.'
  42. end
  43. act 'Leave': gt 'havana', 'dressing_room'
  44. end
  45. if pcs_stren >= 40 or needstrength = 0:
  46. killvar 'needstrength'
  47. act 'Pole dance class (0:30)':
  48. *clr & cla
  49. gs 'exercise', 'tier2', 15, 'agil', 'stren', 'dancpol'
  50. abonement -= 1
  51. if pcs_inhib < 60: inhib_exp += rand(1, 2)
  52. '<center><img <<$set_imgh>> src="images/locations/city/citycenter/gym/dance/poledance.jpg"></center>'
  53. if pcs_dancero < 50 or pcs_stren < 40:
  54. minut += 15
  55. gs 'stat'
  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. else
  59. gs 'exercise', 'tier2', 15, 'dancpol'
  60. 'You study various acrobatics on the pole.'
  61. if pcs_dancpol >= 100: 'You''ve already mastered the art of pole dancing, there is nothing more left to teach you.'
  62. end
  63. act 'Leave': gt 'havana', 'dressing_room'
  64. end
  65. end
  66. end
  67. act 'Leave': gt 'havana', 'dressing_room'
  68. --- havana_dance ---------------------------------