31 lines
1.3 KiB
C
31 lines
1.3 KiB
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetClimate("inside");
|
|
SetAmbientLight(30);
|
|
SetShort("the top of the stairs");
|
|
SetLong("This is the top of the stairwell, if you head down you will be on the vounteer deck. The command deck hallway extends to the south");
|
|
SetItems(([
|
|
({ "announcement", "terms", "terms of service" }) : "Don't look at them, listen to them.",
|
|
({ "advertizements", "ads", "ad", "advertizement" }) : "eye catching advertizements for a wide assortment of pornography, recreational drugs, and violent videogames",
|
|
]));
|
|
|
|
SetListen(([
|
|
({ "announcement", "terms of service", "terms" }) : "By entering this space ship you have agreed to pay for transport to the planet of Voluntaria. There you will participate in a labor program to repay the debt which you are taking on for the transport to that paradise. If you disagree with the terms of this agreement you are welcome to attempt to escape through the airlock doors. Be careful as if they have closed we are already airborn, and you are likely to find yourself in the vacuum of space.",
|
|
]));
|
|
|
|
SetTown("USSprofit");
|
|
SetNoModify(0);
|
|
SetCoordinates("5000,5000,0");
|
|
|
|
SetDoor("down", "/domains/oogtopia/doors/commanddoor.c");
|
|
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|