MBathrooms 910 B

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