blob: 23113e66eab641a679b0cd1469b90b5596d2e5fe [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#include <properties.h>
2#include <combat.h>
3#include "../files.h"
4
5inherit MMONST;
6
7create()
8{
9 if (!clonep(this_object())) return;
10 ::create();
11 SetProp(P_SHORT, "Eine Titanwalze");
12 SetProp(P_LONG, "Pass nur auf, dass diese Titanwalze Dir nicht ueber die Zehen rollt.\nBei diesem Gewicht koennte das auesserst unangenehme Folgen haben.\n");
13 SetProp(P_NAME, "Titanwalze");
14 SetProp(P_GENDER, 2);
15 AddId(({"walze", "titanwalze"}));
16 SetProp(P_LEVEL, 14);
17 SetProp(P_MAX_HP, 170);
18 SetProp(P_ALIGN, 120);
19 SetProp(P_XP, 51000);
20 SetProp(P_BODY, 90);
21 SetProp(P_HANDS, ({" mit wuchtigen Schlaegen", 60}));
22 SetProp(P_SIZE, 210);
23 SetProp(P_DIE_MSG, " zerfaellt in ihre Bestandteile.\n");
24 SetAttackChats(30, ({
25 "Die Titanwalze versucht Dich platt zu walzen.\n",
26 "Die Titanwalze macht: Rumpel, polter ...\n",
27 "Die Titanwalze roehrt.\n"}));
28 set_living_name("titanwalze");
29 AddItem(OBJ("titanring"));
30}