22 lines
495 B
C
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();
|
|
}
|