#include <std.h> inherit ROOM; void create() { ::create(); set_property("light", 3); set_property("night light", 1); set_property("no castle", 1); set_short( "Sun Alley near East Road"); set_long( "Just south of here at the corner of this cheery little " "alley is the Last Dragon Restaurant. Locals dine there " "often. East Road intersects the alley just to the east. " "A great forest marks the northern border of Praxis here."); set_items( (["foo" : "Whatever you say.", "alley" : "This alley is the northernmost part of Praxis. " "Only the great North Forest is north of here.", "restaurant" : "A great place to rest up from adventuring.", "road" : "East Road.", "forest" : "The huge forest north of Praxis. The " "walled town of Cartesia is out there somewhere.", "border" : "The forest keeps Praxis from expanding any " "further north."]) ); set_exits( (["east" : "/domains/Praxis/east_road2", "west" : "/domains/Praxis/sun1", "south" : "/domains/Praxis/restaurant"]) ); }