danceclass.qsrc 3.0 KB

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