danceclass.qsrc 3.1 KB

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