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

20 lines
435 B
C

#include <lib.h>
inherit LIB_SENTIENT;
static void create() {
sentient::create();
SetKeyName("mock turtle");
SetAdjectives( ({"peculiar", "mock"}) );
SetId( ({"turtle", "tortoise"}) );
SetShort("a mock turtle");
SetLong("This peculiar creature has the head of a calf but the body of a turtle.");
SetLevel(1);
SetMelee(1);
SetRace("tortoise");
SetGender("male");
}
void init(){
::init();
}