mud/lib/domains/default/npc/quarantine/pip.c
2020-09-06 05:43:07 -07:00

20 lines
355 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("Pip");
SetId(({"pip"}));
SetShort("Pip");
SetLong("Pip is a foreign exchange student from the Netherlands.");
SetMelee(1);
SetLevel(5);
SetRace("human");
SetGender("male");
SetNoClean(1);
}
void init(){
::init();
}