23 lines
615 B
C
23 lines
615 B
C
#include <lib.h>
|
|
|
|
inherit LIB_SENTIENT;
|
|
|
|
static void create() {
|
|
sentient::create();
|
|
SetKeyName("captain Galt");
|
|
SetId(({"captain","galt","john","mobile"}));
|
|
SetAdjectives(({"non player"}));
|
|
SetShort("Captain John Galt");
|
|
SetLong("John Galt is the captain of the USS Profit, he's hard at work flying between Oogtopia and Voluntaria to bring Ooga Booga volunteers to serve the people of Voluntaria");
|
|
SetInventory(([
|
|
"/domains/voluntaria/obj/captainkey" : 1,
|
|
]));
|
|
SetLevel(1);
|
|
SetMelee(1);
|
|
SetRace("ancap");
|
|
SetGender("male");
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|