20 lines
354 B
C
20 lines
354 B
C
#include <lib.h>
|
|
|
|
inherit LIB_SENTIENT;
|
|
|
|
|
|
static void create() {
|
|
sentient::create();
|
|
SetKeyName("Adrian");
|
|
SetId(({"adrian"}));
|
|
SetShort("Adrian");
|
|
SetLong("Adrian is a foreign exchange student from the United Kingdom.");
|
|
SetLevel(5);
|
|
SetRace("human");
|
|
SetGender("male");
|
|
SetNoClean(1);
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|