blob: 5c5c2ece0cab218aa4fa0dd9c3abfe6c94f69632 [file] [log] [blame]
MG Mud User88f12472016-06-24 23:31:02 +02001#include <properties.h>
2
3inherit "/std/thing";
4
5create() {
6 if (!clonep(this_object())) return;
7 ::create();
8 SetProp(P_SHORT, "Ein altes Blech");
9 SetProp(P_LONG, "Das sind die Ueberreste eines Metallmonsters.\n");
10 SetProp(P_NAME, "Blech");
11 SetProp(P_GENDER, 0);
12 AddId("blech");
13 AddAdjective(({"alt", "altes"}));
14 SetProp(P_WEIGHT, 1100);
15 SetProp(P_VALUE, random(QueryProp(P_MAX_HP))+100);
16}