MG Mud User | 88f1247 | 2016-06-24 23:31:02 +0200 | [diff] [blame^] | 1 | #include <properties.h> |
2 | |||||
3 | inherit "/std/thing"; | ||||
4 | |||||
5 | create() { | ||||
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 | } |