20 lines
386 B
C
20 lines
386 B
C
#include <lib.h>
|
|
|
|
inherit LIB_SENTIENT;
|
|
|
|
static void create() {
|
|
sentient::create();
|
|
SetKeyName("wonkasaur");
|
|
SetId( ({"dinosaur", "Wonkster"}) );
|
|
SetAdjectives(({"non player"}));
|
|
SetShort("wonkasaur");
|
|
SetLong("A dastardly chocolate eating dinosaur");
|
|
SetLevel(1);
|
|
SetMelee(1);
|
|
SetRace("human");
|
|
SetGender("male");
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|