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

12 lines
252 B
C

inherit "/lib/std/room";
void create() {
::create();
SetShort( "Adventurer's Supply Storage Room");
SetLong( "Horace stores weapons and such here.\n");
SetExits( (["south" : "/domains/Praxis/supply"]) );
}
void init(){
::init();
}