mud/lib/domains/campus/npc/wim.c
2020-09-06 05:43:07 -07:00

18 lines
319 B
C

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