artstudia.qsrc 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # artstudia
  2. !!2021/04/15
  3. $loc = 'artstudia'
  4. menu_off = 1
  5. $location_type = 'secluded'
  6. if $ARGS[0] = 'bodimod1':
  7. cla
  8. *clr
  9. gs'stat'
  10. '<center><b><font color = maroon>Patio</font></b></center>'
  11. '<center><img <<$set_imgh>> src="images/locations/pushkin/artsudvor.jpg"></center>'
  12. 'A small open courtyard, which is often used by the art school for outdoor projects. Occasionally, some of the students spend time here relaxing or smoking.'
  13. act 'Leave':gt'ugol'
  14. if arts = 1:
  15. act 'Go to the art studio': artsb = 1 & gt'artstudia','bodimod2'
  16. end
  17. end
  18. if $ARGS[0] = 'bodimod2':
  19. cla
  20. *clr
  21. gs'stat'
  22. '<center><b><font color = maroon>The studio of the artist</font></b></center>'
  23. '<center><img <<$set_imgh>> src="images/locations/pushkin/artscor.jpg"></center>'
  24. 'The walls of the hallway leading to the art school are decorated in a variety of art. Even if the sign out front did not indicate this was the school, this hallway would be a dead give away.'
  25. act 'Leave':gt'artstudia','bodimod1'
  26. if rand(0,2) = 0 and arts_day ! daystart:
  27. 'There are a number of students gathered here. Some of them have removed their clothes and have already been painted by Masya.'
  28. 'One of the girls calls you over, "Hello again, I''m so glad you came to join us again. Quick, get your clothes off. Masya has nearly finished painting Emilia."'
  29. act 'Strip off and join in':
  30. arts_day = daystart
  31. if rand(0,1) = 0:
  32. gt 'artstudia', 'bodimod3'
  33. else
  34. gt 'artstudia', 'bodimod4'
  35. end
  36. end
  37. end
  38. end
  39. if $ARGS[0] = 'bodimod3':
  40. cla
  41. *clr
  42. gs'stat'
  43. '<center><b><font color = maroon>The studio of the artist</font></b></center>'
  44. '<center><img <<$set_imgh>> src="images/locations/pushkin/artstudio/downud.jpg"></center>'
  45. 'After agreeing to join one of the projects, you strip naked and have most of your body painted along with several other students. Once all of you are painted, you are sent to one of the busier streets in the Old Town to model the art.'
  46. 'After several hours and more than a bit of harassment from some of the men, the project is over, and you all head back to the studio.'
  47. act 'Leave': gt'artstudia','bodimod2'
  48. end
  49. if $ARGS[0] = 'bodimod4':
  50. cla
  51. *clr
  52. gs'stat'
  53. '<center><b><font color = maroon>The studio of the artist</font></b></center>'
  54. '<center><img <<$set_imgh>> src="images/locations/pushkin/artstudio/downud.jpg"></center>'
  55. 'After agreeing to join one of the projects, you strip naked and have most of your body painted along with several other students. Once all of you are painted, you are sent to one of the busier streets in the city center to model the art.'
  56. 'After several hours and more than a bit of harassment from some of the men, the project is over, and you all head back to the studio.'
  57. act 'Leave': gt'artstudia','bodimod2'
  58. end
  59. --- artstudia ---------------------------------