MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #include <properties.h> |
| 2 | #include "../files.h" |
| 3 | |
| 4 | inherit MMONST; |
| 5 | |
| 6 | create() |
| 7 | { |
| 8 | if (!clonep(this_object())) return; |
| 9 | ::create(); |
| 10 | AddId(({"eisenfresser", "fresser"})); |
| 11 | SetProp(P_SHORT, "Ein Eisenfresser"); |
| 12 | SetProp(P_LONG, |
| 13 | "Eisenfresser ernaehren sich ausschliesslich von Eisen, allerdings sind\n"+ |
| 14 | "sie so kurzsichtig, dass sie erstmal in alles reinbeissen, was sie\n"+ |
| 15 | "irgendwie wahrnehmen.\n"); |
| 16 | SetProp(P_NAME, "Eisenfresser"); |
| 17 | SetProp(P_GENDER, 1); |
| 18 | SetProp(P_LEVEL, 14); |
| 19 | SetProp(P_MAX_HP, 150); |
| 20 | SetProp(P_ALIGN, -215); |
| 21 | SetProp(P_BODY, 75); |
| 22 | SetProp(P_HANDS, ({" mit eisenbeschlagenen Zaehnen", 55})); |
| 23 | SetProp(P_XP, 42000); |
| 24 | SetProp(P_AGGRESSIVE, 1); |
| 25 | SetProp(P_SIZE, random(200)+50); /* Naja, kurzsichtig halt... ;-) */ |
| 26 | set_living_name("eisenfresser"); |
| 27 | AddItem( OBJ("eisenklumpen") ); |
| 28 | } |