123456789101112131415161718192021222324252627 |
- # MBathrooms
- if $ARGS[0] = 'bath':
- $location_type = 'bathroom'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/bath1.jpg"></center>'
- 'A luxrious bathroom, designed to indulge and relax.'
- gs 'din_van', 'private'
- act 'Return to east wing landing':gt'MLanding', 'east'
- end
- if $ARGS[0] = 'ensuite':
- $location_type = 'bathroom'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/ensuite1.jpg"></center>'
- 'An ensuite bathroom'
- gs 'din_van', 'private'
- end
- if $ARGS[0] = 'restroom':
- $location_type = 'bathroom'
- '<center><img <<$set_imgh>> src="images/locations/city/suburb/bdsm_club/rest.jpg"></center>'
- 'A beautiful little room for taking care of the essentials and making yourself look good.'
- gs 'din_van', 'private'
- act 'Return to foyer':gt'MHall', 'foyer'
- end
- --- MBathrooms ---------------------------------
|