27 lines
589 B
C
27 lines
589 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/oogtopia/room/airlock.c",
|
|
]) );
|
|
SetTown("oogtopia");
|
|
SetNoModify(0);
|
|
SetCoordinates("5000,5000,0");
|
|
|
|
}
|
|
|
|
void init(){
|
|
::init();
|
|
}
|