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

22 lines
495 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("gecko");
SetAdjectives( ({"gecko", "green", "small"}) );
SetId( ({"lizard"}) );
SetShort("a gecko");
SetLong("This is a small lizard, about four inches in length. It has green skin, and unusually large eyes.");
SetLevel(1);
SetMelee(1);
SetRace("lizard");
SetMaxHealthPoints(10);
SetHealthPoints(10);
SetGender("male");
}
void init(){
::init();
}