mud/lib/realms/babylon/tmp/bicjcdin1599367087.c
2020-09-06 05:43:07 -07:00

32 lines
922 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("The empty vastness of space");
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.",
]));
SetEnters( ([
"spaceship" : "/domains/voluntaria/room/airlock.c",
]) );
SetTown("USSprofit");
SetNoModify(0);
SetCoordinates("5000,5000,0");
SetDoor("north", "/domains/oogtopia/doors/airlock.c");
}
void init(){
::init();
}