MBathrooms.qsrc 878 B

123456789101112131415161718192021222324252627
  1. # MBathrooms
  2. if $ARGS[0] = 'bath':
  3. $location_type = 'bathroom'
  4. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bath1.jpg"></center>'
  5. 'A luxrious bathroom, designed to indulge and relax.'
  6. gs 'din_van', 'private'
  7. act 'Return to east wing landing':gt'MLanding', 'east'
  8. end
  9. if $ARGS[0] = 'ensuite':
  10. $location_type = 'bathroom'
  11. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ensuite1.jpg"></center>'
  12. 'An ensuite bathroom'
  13. gs 'din_van', 'private'
  14. end
  15. if $ARGS[0] = 'restroom':
  16. $location_type = 'bathroom'
  17. '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/rest.jpg"></center>'
  18. 'A beautiful little room for taking care of the essentials and making yourself look good.'
  19. gs 'din_van', 'private'
  20. act 'Return to foyer':gt'MHall', 'foyer'
  21. end
  22. --- MBathrooms ---------------------------------