#include <std.h>
#include <terra.h>
inherit ROOM;

void create() {
::create();
    set_short("Tower of the Deathless");
    set_day_long("%^MAGENTA%^ ___________________________________________________________                                                                                     "
                 "|/                           |                             \|           									   "
                 "|                            |                              |            									   "
                 "|        		       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      | 										   "
                 "|        		       |			      |											   "
                 "|			       |      			      |											   "
                 "|        	         PRIMAL|DARKNESS		      |										           "
                 "|			       |			      |											   "
                 "|			   o   |   o			      |											   "
                 "|        		       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|                            |                              |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|\___________________________|_____________________________/|											   ");

   
    set_night_long("%^MAGENTA%^ ___________________________________________________________                                                                                     "
                 "|/                           |                             \|           									   "
                 "|                            |                              |            									   "
                 "|        		       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      | 										   "
                 "|        		       |			      |											   "
                 "|			       |      			      |											   "
                 "|        	         PRIMAL|DARKNESS		      |										           "
                 "|			       |			      |											   "
                 "|			   o   |   o			      |											   "
                 "|        		       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|                            |                              |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|			       |			      |											   "
                 "|\___________________________|_____________________________/|			
    
    set_items(([
	"door" : "This is the door to Cain's room.  He is the deathless child if darkness.",
                  
        	
    ]));
    set_properties(([
	"indoors" : 1,
        "light" : 1,
	"night light" : 0,
    ]));
    set_exits(([
	"south" : ROOMS "vtower4.c",
       ]));
}
