blob: 2d6e6cdb087eea5cd65822b5f5f182f3d7965210 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001inherit "std/npc";
2
3#include <properties.h>
4#include "../files.h"
5
6create()
7{
8 if (!clonep(this_object())) return;
9 ::create();
10 SetProp(P_SHORT, "Ein Anfuehrer der Orks");
11 SetProp(P_LONG, "Dies ist ein fetter, stinkender Ork-Haeuptling, der Dir alles \nandere als freundlich gesonnen ist.\n");
12 SetProp(P_NAME, "Ork");
13 SetProp(P_GENDER, 1);
14 AddId(({"ork", "anfuehrer", "haeuptling"}));
15 SetProp(P_RACE, "Ork");
16 SetProp(P_LEVEL, 16);
17 SetProp(P_MAX_HP, 220);
18 SetProp(P_ALIGN, -280);
19 SetProp(P_XP, 160000);
20 SetProp(P_BODY, 60);
21 SetProp(P_SIZE, random(20)+130);
22 set_living_name("orkchef");
23 seteuid(getuid(this_object()));
24 AddItem(OBJ("saebel"),CLONE_WIELD);
25 AddItem(OBJ("orkhose"),CLONE_WEAR);
26 AddItem(OBJ("orkhelm"),CLONE_WEAR);
27}
28
29