36 lines
991 B
C
36 lines
991 B
C
#include <lib.h>
|
|
#include <medium.h>
|
|
#include <terrain_types.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetAmbientLight(30);
|
|
SetTerrainType(T_SPACE);
|
|
SetMedium(MEDIUM_SPACE);
|
|
SetShort("copy of space.c");
|
|
SetLong("You are drifting in outerspace, near the Voluntaryist spaceship the USS profit. If you are not wearing a spacesuit you are going to die very soon");
|
|
SetItems(([
|
|
({ "spaceship", "airlock", "ship", "USS profit" }) : "The spaceship was built by the lowest bidder and flown on repeated missions to gather volunteers, it's amazing it hasn't already exploded.",
|
|
]));
|
|
SetExits(([
|
|
"down" : "/domains/voluntaria/room/space",
|
|
]));
|
|
|
|
SetEnters( ([
|
|
"spaceship" : "/domains/voluntaria/room/airlock.c",
|
|
]) );
|
|
|
|
SetTown("USSprofit");
|
|
SetNoModify(0);
|
|
SetCoordinates("5000,5000,0");
|
|
|
|
SetDoor("north", "/domains/voluntaria/doors/airlock.c");
|
|
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|