/*-----------------------------------*/
/*    Created by Map Maker           */
/*        by Jeremy Reaban           */
/*-----------------------------------*/
/*----------------------------------------*/
/* Lair*/
/*-----------------------------------------*/
Lair: room
	sdesc = "Monster Lair"
	ldesc = "This is a lair of an evil monster.
	There are exits to the north and west. "
	north = Dungeon
	east = Courtyard
;
/*----------------------------------------*/
/* Courtyard*/
/*-----------------------------------------*/
Courtyard: room
	sdesc = "Courtyard"
	ldesc = "It's the castle courtyard.
	There are exits to the north, south, east and west. "
	north = Barracks
	south = PrincessRoom
	west = Lair
	east = Entry
;
/*----------------------------------------*/
/* Entry*/
/*-----------------------------------------*/
Entry: room
	sdesc = "Entry Way"
	ldesc = "It's the entryway of the castle.
	There are exits to the  south & west. "
	south = Gate
	west = Courtyard
;
/*----------------------------------------*/
/* Dungeon*/
/*-----------------------------------------*/
Dungeon: room
	sdesc = "Dank Dark Dungeon"
	ldesc = "It's a dungeon.
	There are exits to the south and east. "
	south = Lair
	east = Barracks
;
/*----------------------------------------*/
/* Princess Room*/
/*-----------------------------------------*/
PrincessRoom: room
	sdesc = "Princess's Room"
	ldesc = "This is the room where the princess is kept.
	There are exits to the north and west. "
	north = Courtyard
	west = TreasureRoom
;
/*----------------------------------------*/
/* Treasure Room*/
/*-----------------------------------------*/
TreasureRoom: room
	sdesc = "Treasure Room"
	ldesc = "It's some sort of treasury
	There is an exit to the east. "
	east = PrincessRoom
;
/*----------------------------------------*/
/* Barracks*/
/*-----------------------------------------*/
Barracks: room
	sdesc = "Barracks"
	ldesc = "It's the guard's barracks.
	There are exits to the  south & west. "
	south = Courtyard
	west = Dungeon
;
/*----------------------------------------*/
/* Gate*/
/*-----------------------------------------*/
Gate: room
	sdesc = "Gate"
	ldesc = "It's a gate that leads into the castle.
	There is an exit to the north. "
	north = Entry
;
