24 lines
463 B
C
24 lines
463 B
C
#include <lib.h>
|
|
|
|
inherit LIB_SENTIENT;
|
|
|
|
static void create() {
|
|
sentient::create();
|
|
SetKeyName("newt");
|
|
SetAdjectives( ({"slimy"}) );
|
|
SetId(({"npc","mob","character","mobile"}));
|
|
SetShort("a newt");
|
|
SetLong("A slimy amphibian.");
|
|
SetWimpy(80);
|
|
SetWanderSpeed(3);
|
|
SetMelee(1);
|
|
SetLevel(1);
|
|
SetRace("amphibian");
|
|
SetClass("explorer");
|
|
SetMaxHealthPoints(10);
|
|
SetGender("male");
|
|
}
|
|
void init(){
|
|
::init();
|
|
}
|