void create() { ::create(); set_name("rat"); if (random(10) > 5) { set_short("fat rat"); set_level(random(5)+9); } else { set_short("small rat"); set_level(random(5)+6); } set_race("rat"); set_body_type("feline"); if (random(10) > 5) { set_gender("female"); } else { set_gender("male"); } set_class("animal"); set_subclass("fast"); set_id(({ "rat", query_short() }));
void create(){ ::create(); set_name("spook"); set_short("A Spook"); set_long("An ugly little spook. "); set_level(35); set_race("spook"); set_body_type("human"); set_class("clergy"); set_subclass("monk"); set_id(({"spook"}));
void create() { int hp; ::create(); set_name("ogre"); set_short("a green ogre"); set_long("The skin of this ogre is a dull green. Matted black hair " "hangs on all sides of his head."); set_gender("male"); set_race("ogre"); set_body_type("human"); set_alignment(-700); set_class("fighter"); set_subclass("antipaladin"); set_spells( ({ "headbutt", "slash", "whip", "shadowburst" }) );
void create() { int hp; ::create(); set_name("ogre"); set_short("a big ogre"); set_long("Even bigger than most ogres, this one has huge muscles " "all over his body. His rags barely cover his body."); set_gender("male"); set_race("ogre"); set_body_type("human"); set_alignment(-600); set_class("fighter"); set_subclass("berserker"); set_spells( ({ "headbutt", "pummel", "rush", "brawn" }) );
void create() { ::create(); set_name("Scorpion King"); set_short("The Scorpion King"); set_long("This is the Scorpion King. Although he was " "frozen and buried, he was dug up by the spawn of " "Rejik. He is still alive however, and is willing " "to kill anyone who threatens his guild."); set_race("gnoll"); set_body_type("gnoll"); set_level(30); set_class("mage"); set_subclass("wizard"); set_id(({ "king", "guild guard", "scorpian king" }));
void create() { int hp; ::create(); set_name("ogre"); set_short("an ogre"); set_long("This ogre is big and hairy. His thick grey skin is " "covered in patches of dirt, but his eyes shine with an odd " "degree of intelligence."); set_gender("male"); set_race("ogre"); set_body_type("human"); set_alignment(-800); set_class("mage"); set_subclass("necromancer"); set_spells( ({ "plague", "disease", "shadowburst", "siphon" }) );
void create() { ::create(); set_name("Raymond"); set_short("Raymond, the insane one"); set_long("This is the biggest human being you have ever seen. He looks" " almost like an ogre, but is not as ugly. He has black hair" " with the most puppy dog brown eyes you have ever seen. He" " looks at you and scoffs at your tiny size. I guess you could" " say he has the face of an angel and the body of a GOD!!!"); set("aggressive",50); set_subclass("monk"); set_level(99); set_stats("strength",300); set_stats("constitution",250); set_skill("attack",100); set_skill("melee",300); set_id(({"Raymond"}));