mud/lib/domains/Praxis/sun1.c
2020-09-06 05:43:07 -07:00

33 lines
1.2 KiB
C

#include <lib.h>
inherit LIB_ROOM;
void create() {
::create();
SetProperty("light", 4);
SetProperty("night light", 1);
SetProperty("no castle", 1);
SetShort( "Sun Alley near Centre Path");
SetLong(
"Sun Alley is a bright path, named for the fact that the sun "
"always seems to be shining down upon it. The path is fairly "
"quiet, except for the occasional villager that is out strolling "
"or running their errands. The alley runs north of the village, "
"and interescts Centre Path west of here. To the south "
"you can see a small brown thatch house. " );
SetItems(
(["alley" : "It is bright and cheerful, not like that alley on "
"the south end.",
"path" : "The main north-south road of Praxis.",
"intersection" : "Sun alley meets Centre Path there.",
"house" : "It's a small thatch house, nothing special."]) );
SetSkyDomain("town");
SetExits(
(["east" : "/domains/Praxis/sun2",
"west" : "/domains/Praxis/n_centre2",
"south" : "/domains/Praxis/house"]) );
}
void init(){
::init();
}