Merentha Website
- Overview
- About LPC Coding
- Header Files
- The Problem Sets
- Rooms
- Normal Rooms
- Monster Rooms
- Search Rooms
- Exit Rooms
- Door Rooms
- Monsters
- Normal Monster
- Random/Emote Monster
- Patrol/Talking Monster
- Skills/Interactive Monster
- Armour
- A Vest
- A Ring
- Cursed Armour
- Weapons
- Normal Staff
- Two Handed Sword
- Special Attack Weapon
- Cursed Weapon
- Talkin Weapon
- Lights
- A Match
- A Torch
- A Lantern
- Bags
- A Normal Bag
- A Backpack (wearable)
- An Expanding Bag
- Misc Objects
- A Leaf
- A Sea Shell
- A Key
- A Snowball
|
// Petrarch
// a normal monster
#include
inherit MONSTER;
void create() {
::create();
set_name("gnome");
set_short("a gnome is here exploring the forest");
set_long("The gnome appears to be exploring the forest. He could be "
"searching for something the way he is carrying about.");
set_id(({"gnome", "explorer"}));
set_level(10);
set_race("gnome");
set_body_type("human");
set_gender("male");
}
|