31 lines
724 B
C
31 lines
724 B
C
#include <lib.h>
|
|
#include ROOMS_H
|
|
|
|
inherit LIB_ROOM;
|
|
|
|
void create() {
|
|
room::create();
|
|
SetClimate("temperate");
|
|
SetAmbientLight(30);
|
|
SetShort("a grassy field");
|
|
SetLong("a grassy field, much of the grass is scorched where a spaceship has landed.");
|
|
SetItems(([
|
|
"spaceship" : "A grand spaceship, completely out of place in this primitive utopia",
|
|
]));
|
|
SetEnters( ([
|
|
"spaceship" : "/domains/voluntaria/room/airlock.c",
|
|
]) );
|
|
SetTown("oogtopia");
|
|
SetExits(([
|
|
"south" : "/domains/oogtopia/room/bushesw",
|
|
"east" : "/domains/oogtopia/room/bushesn",
|
|
]));
|
|
SetNoModify(0);
|
|
SetCoordinates("7002,7000,7000");
|
|
|
|
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|