#include #include #include #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(); }