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

27 lines
847 B
C

#include <lib.h>
#include ROOMS_H
inherit LIB_ROOM;
void create() {
room::create();
SetClimate("temperate");
SetNightLight(20);
SetDayLight(40);
SetShort("Ooga Booga Central");
SetNightLong("This is where the Oogas have their parties, the sun is down and the party is in full swing. Drums, hooting and hollering, fermented drinks altough nothing distilled is permitted, and herbs and fungus of many varieties are all about.");
SetDayLong("This is where the Oogas get together and party, as long as the sun is up it's fairly sparsely attended, and any oogas around are likely nursing a hangover from the night before.");
SetInventory(([
"/domains/oogtopia/npc/party_ooga" : 5,
]));
SetTown("oogtopia");
SetNoModify(0);
SetCoordinates("7001,7000,7000");
}
void init(){
::init();
}