from room import room rooms = {} ## purgatory r = room() r.description = """You are in a gray plane of desolation. A heavy mist lays across the land obscuring the sky and the horizon. From here you appear free to move in any direction you should choose.""" r.exits = {} r.exits['up'] = 'heaven' r.exits['down'] = 'hell' r.exits['north'] = 'purgatory' r.exits['northest'] = 'purgatory' r.exits['northwest'] = 'purgatory' r.exits['south'] = 'purgatory' r.exits['southeast'] = 'purgatory' r.exits['southwest'] = 'purgatory' r.exits['east'] = 'purgatory' r.exits['west'] = 'hookertopia' rooms['purgatory'] = r ## heaven r = room() r.desciption = """"You have risen up! You are ascended into the clouds. There is an old rusty radiator here. A woman protrudes from it, singing a simple song, "In Heaven, Everything is Fine!"

She keeps singing it. There appears to be no escape. Everyhing is fine though.""" rooms['heaven'] = r ## hell r = room() r.description = """You have descended. You are straped to a chair. Your eyelids are stapled open. A 90" LCD screen sits directly in front of you tuned to Fox News. There is no escape.""" rooms['hell'] = r ## hookertopia r = room() r.description = """You stand before a massive stone building. It has one door, and no windows. Carved into the stone above the door is a single word: "Hookertopia".""" r.exits['up'] = 'heaven' r.exits['down'] = 'hell' r.exits['north'] = 'purgatory' r.exits['northest'] = 'purgatory' r.exits['northwest'] = 'purgatory' r.exits['south'] = 'purgatory' r.exits['southeast'] = 'purgatory' r.exits['southwest'] = 'purgatory' r.exits['east'] = 'purgatory' r.exits['west'] = 'purgatory' r.exits['in'] = 'foyer' rooms['hookertopia'] = r ## foyer r = room() r.description = """You are inside Hookertopia. To the North, is Mary's room, to the West is Lisa's room, and to the South is Sonia's room. You may also exit to the East back to the plains of Purgatory if you do not wish to purge yourself of your earthly desires.""" r.exits['north'] = 'mary' r.exits['mary'] = 'mary' r.exits['west'] = 'lisa' r.exits['lisa'] = 'lisa' r.exits['south'] = 'sonia' r.exits['sonia'] = 'sonia' r.exits['out'] = 'hookertopia' r.exits['east'] = 'hookertopia' rooms['foyer'] = r ## mary r = room() r.description = """You are in Mary's room. Mary is here, and she is Hookerlicious. The foyer is to the South.""" r.exits['south'] = 'foyer' r.exits['out'] = 'foyer' rooms['mary'] = r ## lisa r = room() r.description = """You are in Lisa's room. Lisa is here, and she is Hookertastic. The foyer is to the East.""" r.exits['east'] = 'foyer' r.exits['out'] = 'foyer' rooms['lisa'] = r ## sonia r = room() r.description = """You are in Sonia's room. Sonia is here, and she is Hookergasmic. The foyer is to the North.""" r.exits['north'] = 'foyer' r.exits['out'] = 'foyer' rooms['sonia'] = r